diff --git a/Doc/developer_man.pdf b/Doc/developer_man.pdf index 6814edf1bbcc759f713aad198ba65dc1364999f9..34d8d6069a253ae26de8cdeff9f26c5317f3ad06 100644 Binary files a/Doc/developer_man.pdf and b/Doc/developer_man.pdf differ diff --git a/Doc/developer_man.tex b/Doc/developer_man.tex index bc91ada2155bcbf4f7fd4b08c3d4f89d8575ff95..71b4cbeb842c35caeef220d1329ebc82970c9258 100644 --- a/Doc/developer_man.tex +++ b/Doc/developer_man.tex @@ -1304,8 +1304,10 @@ for serious bugs. Development can proceed in different ways: \begin{enumerate} -\item Via ``merge'' requests from a private repository +\item Via ``merge'' requests from a private repository + ({\em recommended}) \item Via ``merge'' requests from a branch + ({\em not recommended}) \item Directly into the ``develop'' branch \end{enumerate} The first option is the recommended one. Register on GitLab and {\em save @@ -1395,7 +1397,7 @@ they didn't know what they were doing): \label{Sec:testfarm} The \qe\, test-suite is used to ensure continuous integration and long-term numerical stability of the code. -The test-suite is also used by different Buildbot test-farm to automatically test the code nightly after a commit to the SVN qe-forge repository has been detected. +The test-suite is also used by different Buildbot test-farm to automatically test the code nightly after a commit to the repository has been detected. The currently active test-farm machine can be accessed at \texttt{test-farm.quantum-espresso.org} (points to a machine at CINECA: diff --git a/Doc/release-notes b/Doc/release-notes index 6404f30c10c930248253b49853feb1c3f83048d2..34eb40314d9667ec112fd1d1185a2c910c11f167 100644 --- a/Doc/release-notes +++ b/Doc/release-notes @@ -1,3 +1,6 @@ +Incompatible changes in development version: + * Module "wavefunctions_module" renamed "wavefunctions" + New in 6.3 version: * New implementation, using a more robust algorithm for the Wigner-Size construction in EPW. (Samuel Ponce and Carla Verdi) diff --git a/PHonon/PH/matdyn.f90 b/PHonon/PH/matdyn.f90 index e09e21c2ed9fda8ca61d9fef2b8a9da272886ead..6d9c9f8030ba5b68c3bd989b383b9adf6413114d 100644 --- a/PHonon/PH/matdyn.f90 +++ b/PHonon/PH/matdyn.f90 @@ -165,7 +165,8 @@ PROGRAM matdyn LOGICAL :: dos, has_zstar, q_in_cryst_coord, eigen_similarity COMPLEX(DP), ALLOCATABLE :: dyn(:,:,:,:), dyn_blk(:,:,:,:), frc_ifc(:,:,:,:) COMPLEX(DP), ALLOCATABLE :: z(:,:) - REAL(DP), ALLOCATABLE:: tau(:,:), q(:,:), w2(:,:), freq(:,:), wq(:), dynq(:,:,:), DOSofE(:) + REAL(DP), ALLOCATABLE:: tau(:,:), q(:,:), w2(:,:), freq(:,:), wq(:), & + dynq(:,:,:), DOSofE(:) INTEGER, ALLOCATABLE:: ityp(:), itau_blk(:) REAL(DP) :: omega,alat, &! cell parameters and volume at_blk(3,3), bg_blk(3,3), &! original cell @@ -533,7 +534,7 @@ PROGRAM matdyn ALLOCATE ( dyn(3,3,nat,nat), dyn_blk(3,3,nat_blk,nat_blk) ) ALLOCATE ( z(3*nat,3*nat), w2(3*nat,nq), f_of_q(3,3,nat,nat), & - & dynq(3*nat,nq,nat), DosofE(nat) ) + dynq(3*nat,nq,nat), DOSofE(nat) ) ALLOCATE ( tmp_w2(3*nat), abs_similarity(3*nat,3*nat), mask(3*nat) ) if(la2F.and.ionode) open(unit=300,file='dyna2F',status='unknown') @@ -753,11 +754,6 @@ PROGRAM matdyn END DO END DO ! - ! The factor 0.5 corrects for the factor 2 in dos_t, - ! that accounts for the spin in the electron DOS. - ! - !WRITE (2, '(F15.10,F15.2,F15.6,F20.5)') & - ! E, E*RY_TO_CMM1, E*RY_TO_THZ, 0.5d0*DOSofE(1) IF (ionode) WRITE (2, '(ES12.4,1000ES12.4)') E, SUM(DOSofE(1:nat)), DOSofE(1:nat) END DO IF (ionode) CLOSE(unit=2) diff --git a/PP/Doc/INPUT_PP.def b/PP/Doc/INPUT_PP.def index e2f48fc6326f7c77a8ec80126feeb1c285318a6b..05394528b8bbbe748607f79072f5effd90b17c1f 100644 --- a/PP/Doc/INPUT_PP.def +++ b/PP/Doc/INPUT_PP.def @@ -393,14 +393,13 @@ input_description -distribution {Quantum Espresso} -package PWscf -program pp.x 0 = format suitable for gnuplot (1D) - 1 = format suitable for contour.x (2D) + 1 = obsolete format no longer supported 2 = format suitable for plotrho (2D) 3 = format suitable for XCRYSDEN (2D or user-supplied 3D region) - 4 = format suitable for gOpenMol (3D) - (formatted: convert to unformatted *.plt) + 4 = obsolete format no longer supported 5 = format suitable for XCRYSDEN (3D, using entire FFT grid) @@ -527,12 +526,12 @@ input_description -distribution {Quantum Espresso} -package PWscf -program pp.x are ignored, the entire FFT grid is written in the XCRYSDEN format - works for any crystal axis (VERY FAST) - - If @ref e1, @ref e2, @ref e3, @ref x0 are present, and @ref e1, @ref e2, @ref e3 are parallel - to xyz and parallel to crystal axis, a subset of the - FFT grid that approximately covers the parallelepiped - defined by @ref e1, @ref e2, @ref e3, @ref x0, is written (presently only - if @ref output_format = 4, i.e. gopenmol format) - works only - if the crystal axis are parallel to xyz + - If @ref e1, @ref e2, @ref e3, @ref x0 are present, + and @ref e1, @ref e2, @ref e3 are parallel to xyz + and parallel to crystal axis, a subset of the FFT + grid that approximately covers the parallelepiped + defined by @ref e1, @ref e2, @ref e3, @ref x0, is + written - untested, might be obsolete - Otherwise, the required 3D grid is generated from the Fourier components (may be VERY slow) diff --git a/PP/Doc/INPUT_PP.html b/PP/Doc/INPUT_PP.html index ad64abcc8ef1c2478ccf675325b680cbfdbc831c..f5fdd8627fc0a443b9bc7f7468e519bcbc80f325 100644 --- a/PP/Doc/INPUT_PP.html +++ b/PP/Doc/INPUT_PP.html @@ -62,7 +62,7 @@ </blockquote> <p><a href="#idm98">&PLOT</a></p> <blockquote> -<a href="#idm99">nfile</a> | <a href="#idm104">filepp</a> | <a href="#idm108">weight</a> | <a href="#idm113">iflag</a> | <a href="#idm115">output_format</a> | <a href="#idm117">fileout</a> | <a href="#idm120">interpolation</a> | <a href="#idm129">e1</a> | <a href="#idm131">x0</a> | <a href="#idm133">nx</a> | <a href="#idm138">e1</a> | <a href="#idm139">e2</a> | <a href="#idm143">x0</a> | <a href="#idm146">nx</a> | <a href="#idm147">ny</a> | <a href="#idm152">e1</a> | <a href="#idm153">e2</a> | <a href="#idm154">e3</a> | <a href="#idm159">x0</a> | <a href="#idm163">nx</a> | <a href="#idm164">ny</a> | <a href="#idm165">nz</a> | <a href="#idm183">radius</a> | <a href="#idm186">nx</a> | <a href="#idm187">ny</a> +<a href="#idm99">nfile</a> | <a href="#idm104">filepp</a> | <a href="#idm108">weight</a> | <a href="#idm113">iflag</a> | <a href="#idm115">output_format</a> | <a href="#idm117">fileout</a> | <a href="#idm120">interpolation</a> | <a href="#idm129">e1</a> | <a href="#idm131">x0</a> | <a href="#idm133">nx</a> | <a href="#idm138">e1</a> | <a href="#idm139">e2</a> | <a href="#idm143">x0</a> | <a href="#idm146">nx</a> | <a href="#idm147">ny</a> | <a href="#idm152">e1</a> | <a href="#idm153">e2</a> | <a href="#idm154">e3</a> | <a href="#idm159">x0</a> | <a href="#idm163">nx</a> | <a href="#idm164">ny</a> | <a href="#idm165">nz</a> | <a href="#idm182">radius</a> | <a href="#idm185">nx</a> | <a href="#idm186">ny</a> </blockquote> </blockquote> </blockquote> @@ -612,14 +612,13 @@ weight(1)*rho(1) + weight(2)*rho(2) + weight(3)*rho(3) + ... 0 = format suitable for gnuplot (1D) -1 = format suitable for contour.x (2D) +1 = obsolete format no longer supported 2 = format suitable for plotrho (2D) 3 = format suitable for XCRYSDEN (2D or user-supplied 3D region) -4 = format suitable for gOpenMol (3D) - (formatted: convert to unformatted *.plt) +4 = obsolete format no longer supported 5 = format suitable for XCRYSDEN (3D, using entire FFT grid) @@ -807,12 +806,12 @@ rho(i,j,k) = rho( x0 + e1 * (i-1)/nx are ignored, the entire FFT grid is written in the XCRYSDEN format - works for any crystal axis (VERY FAST) -- If <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a>, <a href="#x0">x0</a> are present, and <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a> are parallel - to xyz and parallel to crystal axis, a subset of the - FFT grid that approximately covers the parallelepiped - defined by <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a>, <a href="#x0">x0</a>, is written (presently only - if <a href="#output_format">output_format</a> = 4, i.e. gopenmol format) - works only - if the crystal axis are parallel to xyz +- If <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a>, <a href="#x0">x0</a> are present, + and <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a> are parallel to xyz + and parallel to crystal axis, a subset of the FFT + grid that approximately covers the parallelepiped + defined by <a href="#e1">e1</a>, <a href="#e2">e2</a>, <a href="#e3">e3</a>, <a href="#x0">x0</a>, is + written - untested, might be obsolete - Otherwise, the required 3D grid is generated from the Fourier components (may be VERY slow) @@ -823,7 +822,7 @@ rho(i,j,k) = rho( x0 + e1 * (i-1)/nx <b>ELSEIF </b><tt><em>iflag = 4</em> :</tt><blockquote><table style="border-color: #bb9977; border-style: solid; border-width: 3; margin-bottom: 10; table-layout: auto; background-color: #FFddbb; width: 100%; padding: 5 5 0 30"><tr><td> <p><b> the following variables are REQUIRED: </b></p> - <a name="idm183"></a><a name="radius"></a><table width="100%" style="border-color: #b5b500; border-style: solid; border-width: 2; margin-bottom: 10; table-layout: auto; background-color: #FFFFFF;"> + <a name="idm182"></a><a name="radius"></a><table width="100%" style="border-color: #b5b500; border-style: solid; border-width: 2; margin-bottom: 10; table-layout: auto; background-color: #FFFFFF;"> <tr> <th align="left" valign="top" width="20%" style="background: #ffff99; padding: 2 2 2 10; ">radius</th> <td style="text-align: left; vertical-align: top; background: #ffffc3; padding: 2 2 2 5; ">REAL</td> @@ -836,7 +835,7 @@ Radius of the sphere (alat units), centered at (0,0,0) <table width="100%" style="border-color: #b5b500; border-style: solid; border-width: 2; margin-bottom: 10; table-layout: auto; background-color: #FFFFFF;"> <tr> <th align="left" valign="top" width="20%" style="white-space: nowrap; background: #ffff99; padding: 2 2 2 10; "> -<a name="idm186"></a><a name="nx"></a>nx, <a name="idm187"></a><a name="ny"></a>ny</th> +<a name="idm185"></a><a name="nx"></a>nx, <a name="idm186"></a><a name="ny"></a>ny</th> <td style="text-align: left; vertical-align: top; background: #ffffc3; padding: 2 2 2 5; ">INTEGER</td> </tr> <tr><td align="left" valign="top" colspan="2"><blockquote><pre style="margin-bottom: -1em;"> @@ -854,7 +853,7 @@ theta(j) = pi * (j - 1)/(ny-1), j=1, ny </td></tr> </table> <small> - This file has been created by helpdoc utility on Fri Jun 22 17:11:34 CEST 2018. + This file has been created by helpdoc utility on Tue Jul 17 15:42:20 CEST 2018. </small> </body> </html> diff --git a/PP/Doc/INPUT_PP.txt b/PP/Doc/INPUT_PP.txt index d3bfd62bd829d7647226bfa1d0ac5159b6a4eb37..3223d10bf35b00a930f93f944149ef40d12b7f83 100644 --- a/PP/Doc/INPUT_PP.txt +++ b/PP/Doc/INPUT_PP.txt @@ -405,14 +405,13 @@ NAMELIST: &PLOT 0 = format suitable for gnuplot (1D) - 1 = format suitable for contour.x (2D) + 1 = obsolete format no longer supported 2 = format suitable for plotrho (2D) 3 = format suitable for XCRYSDEN (2D or user-supplied 3D region) - 4 = format suitable for gOpenMol (3D) - (formatted: convert to unformatted *.plt) + 4 = obsolete format no longer supported 5 = format suitable for XCRYSDEN (3D, using entire FFT grid) @@ -544,12 +543,12 @@ NAMELIST: &PLOT are ignored, the entire FFT grid is written in the XCRYSDEN format - works for any crystal axis (VERY FAST) - - If @ref e1, @ref e2, @ref e3, @ref x0 are present, and @ref e1, @ref e2, @ref e3 are parallel - to xyz and parallel to crystal axis, a subset of the - FFT grid that approximately covers the parallelepiped - defined by @ref e1, @ref e2, @ref e3, @ref x0, is written (presently only - if @ref output_format = 4, i.e. gopenmol format) - works only - if the crystal axis are parallel to xyz + - If @ref e1, @ref e2, @ref e3, @ref x0 are present, + and @ref e1, @ref e2, @ref e3 are parallel to xyz + and parallel to crystal axis, a subset of the FFT + grid that approximately covers the parallelepiped + defined by @ref e1, @ref e2, @ref e3, @ref x0, is + written - untested, might be obsolete - Otherwise, the required 3D grid is generated from the Fourier components (may be VERY slow) @@ -584,4 +583,4 @@ NAMELIST: &PLOT ===END OF NAMELIST====================================================== -This file has been created by helpdoc utility on Fri Jun 22 17:11:34 CEST 2018 +This file has been created by helpdoc utility on Tue Jul 17 15:42:19 CEST 2018 diff --git a/PP/src/Makefile b/PP/src/Makefile index 1d3ff2982f37aa412f5d322bf9e4213627da7a71..6e1cb9ab70e57451e038d6ebb81d5af7acf454a8 100644 --- a/PP/src/Makefile +++ b/PP/src/Makefile @@ -36,7 +36,6 @@ local_dos1d.o \ openfil_pp.o\ partialdos.o \ paw_postproc.o \ -plot_whole_cell.o \ projections_mod.o \ projwfc_box.o \ punch_plot.o \ diff --git a/PP/src/chdens_bspline.f90 b/PP/src/chdens_bspline.f90 index 085d7bde8f85c971f4d83ca5229fc05092707bb5..b6b258deb1c84787268c217ed8a688fbecf53b7d 100644 --- a/PP/src/chdens_bspline.f90 +++ b/PP/src/chdens_bspline.f90 @@ -193,6 +193,7 @@ SUBROUTINE plot_2d_bspline (nx, ny, m1, m2, x0, e1, e2, rhor, alat, & ! and we print the charge on output if (ionode) then + ! if (output_format == 0) then ! ! gnuplot format @@ -202,12 +203,7 @@ SUBROUTINE plot_2d_bspline (nx, ny, m1, m2, x0, e1, e2, rhor, alat, & write (ounit, '(e25.14)') ( dble(carica(i,j)), j = 1, ny ) write (ounit, * ) enddo - elseif (output_format == 1) then - ! - ! contour.x format ! - write (ounit, '(3i5,2e25.14)') nx, ny, 1, deltax, deltay - write (ounit, '(4e25.14)') ( ( dble(carica(i,j)), j = 1, ny ), i = 1, nx ) elseif (output_format == 2) then ! ! plotrho format @@ -226,6 +222,7 @@ SUBROUTINE plot_2d_bspline (nx, ny, m1, m2, x0, e1, e2, rhor, alat, & ! call xsf_struct (alat, at, nat, tau, atm, ityp, ounit) call xsf_datagrid_2d (carica, nx, ny, m1, m2, x0, e1, e2, alat, ounit) + ! elseif (output_format == 7) then ! ! gnuplot format : x, y, f(x,y) @@ -238,7 +235,7 @@ SUBROUTINE plot_2d_bspline (nx, ny, m1, m2, x0, e1, e2, rhor, alat, & write(ounit, *) enddo else - call errore('plot_2d', 'wrong output_format', 1) + call errore('plot_2d', 'wrong or obsolete output_format', 1) endif endif @@ -255,7 +252,6 @@ SUBROUTINE plot_3d_bspline (alat, at, nat, tau, atm, ityp, rhor, & USE kinds, ONLY : dp USE io_global, ONLY : stdout, ionode USE fft_base, ONLY : dfftp - USE chdens_module, ONLY : write_openmol_file !--------------------------------------------------------------------- implicit none integer, intent(in) :: nx, ny, nz, nat, ityp(nat), output_format, ounit @@ -287,16 +283,11 @@ SUBROUTINE plot_3d_bspline (alat, at, nat, tau, atm, ityp, rhor, & rhomax = maxval(carica) if (ionode) then - if (output_format == 4) then - ! gOpenMol file - call write_openmol_file (alat, at, nat, tau, atm, ityp, x0, & - m1, m2, m3, nx, ny, nz, rhomax, carica, ounit) - - elseif (output_format == 6) then + if (output_format == 6) then ! Gaussian Cube call write_cubefile_new(alat, nat, tau, atm, ityp, x0, & - m1, m2, m3, e1, e2, e3, nx, ny, nz, carica, ounit) - + m1, m2, m3, e1, e2, e3, nx, ny, nz, carica, ounit) + else ! fallback to XCrysden call xsf_struct(alat, at, nat, tau, atm, ityp, ounit) diff --git a/PP/src/chdens_module.f90 b/PP/src/chdens_module.f90 index 2fcfac49f5ab2cfbfd90385bf7f5683a4059fa12..fd232efe976c5b38cb47431caf6fc07dbe4dbb53 100644 --- a/PP/src/chdens_module.f90 +++ b/PP/src/chdens_module.f90 @@ -73,10 +73,10 @@ SUBROUTINE chdens (plot_files,plot_num) LOGICAL :: luse_filepp CHARACTER (len=13), DIMENSION(0:7) :: formatname = & (/ 'gnuplot ', & - 'contour.x ', & + 'obsolete! ', & 'plotrho.x ', & 'XCrySDen ', & - 'gOpenMol ', & + 'obsolete! ', & 'XCrySDen ', & 'Gaussian cube', & 'gnuplot x,y,f' /) @@ -175,8 +175,6 @@ SUBROUTINE chdens (plot_files,plot_num) CALL infomsg ('chdens', 'output format not set, exiting' ) RETURN ENDIF - - ! ! check for number of files ! @@ -187,8 +185,10 @@ SUBROUTINE chdens (plot_files,plot_num) CALL errore ('chdens ', & "can't mix nfile > 1 with multiple output files", 1) ENDIF - - + ! check for output_format + IF ( output_format == 1 .or. output_format == 4 .or. & + output_format < 0 .or. output_format > 7 ) & + CALL errore ('chdens', 'output_format wrong or obsolete', 1) ! ! prepare input and output files to read ! @@ -249,10 +249,8 @@ SUBROUTINE chdens (plot_files,plot_num) abs(e2(1)*e3(1) + e2(2)*e3(2) + e2(3)*e3(3)) > 1d-6 ) & CALL errore ('chdens', 'e1, e2, e3 are not orthogonal', 1) - IF ((iflag==3) .and.(output_format < 3 .or. output_format > 6)) & + IF ( output_format < 4 .or. output_format > 6 ) & CALL errore ('chdens', 'incompatible iflag/output_format', 1) - IF ((iflag/=3) .and. ((output_format == 5) .or. (output_format == 6))) & - CALL errore ('chdens', 'output_format=5/6, iflag<>3', 1) ELSEIF (iflag == 4) THEN @@ -524,23 +522,6 @@ SUBROUTINE chdens (plot_files,plot_num) ELSEIF (iflag == 3) THEN - IF (output_format == 4.and.ionode) THEN - - ! gopenmol wants the coordinates in a separate file - - IF (fileout /= ' ') THEN - OPEN (unit = ounit+1, file = trim(fileout)//'.xyz', & - form = 'formatted', status = 'unknown') - WRITE( stdout, '(5x,"Writing coordinates to file ",a)') & - trim(fileout)//'.xyz' - ELSE - OPEN (unit = ounit+1, file = 'coord.xyz', & - form = 'formatted', status = 'unknown') - WRITE( stdout, '("Writing coordinates to file coord.xyz")') - ENDIF - ENDIF - - IF (output_format == 5.and.ionode) THEN ! ! XCRYSDEN FORMAT @@ -564,7 +545,7 @@ SUBROUTINE chdens (plot_files,plot_num) ELSEIF (ionode) THEN ! - ! GOPENMOL OR XCRYSDEN FORMAT + ! XCRYSDEN FORMAT ! IF (fast3d) THEN @@ -842,12 +823,7 @@ SUBROUTINE plot_2d (nx, ny, m1, m2, x0, e1, e2, ngm, g, rhog, alat, & WRITE (ounit, '(e25.14)') ( dble(carica(i,j)), j = 1, ny ) WRITE (ounit, * ) ENDDO - ELSEIF (output_format == 1) THEN ! - ! contour.x format - ! - WRITE (ounit, '(3i5,2e25.14)') nx, ny, 1, deltax, deltay - WRITE (ounit, '(4e25.14)') ( ( dble(carica(i,j)), j = 1, ny ), i = 1, nx ) ELSEIF (output_format == 2) THEN ! ! plotrho format @@ -866,6 +842,7 @@ SUBROUTINE plot_2d (nx, ny, m1, m2, x0, e1, e2, ngm, g, rhog, alat, & ! CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) CALL xsf_datagrid_2d (carica, nx, ny, m1, m2, x0, e1, e2, alat, ounit) + ! ELSEIF (output_format == 7) THEN ! ! gnuplot format : x, y, f(x,y) @@ -978,6 +955,7 @@ SUBROUTINE plot_2ds (nx, ny, x0, ngm, g, rhog, output_format, ounit) ! and we print the charge on output ! IF (ionode) THEN + ! IF (output_format==0) THEN ! ! gnuplot format @@ -986,15 +964,9 @@ SUBROUTINE plot_2ds (nx, ny, x0, ngm, g, rhog, output_format, ounit) DO i = 1, nx WRITE (ounit, '(e25.14)') ( dble(carica(i,j)), j = 1, ny ) ENDDO - ELSEIF (output_format==1) THEN - ! - ! contour.x format ! - WRITE (ounit, '(3i5,2e25.14)') nx, ny, 1, deltax, deltay - WRITE (ounit, '(4e25.14)') ( ( dble(carica(i,j)), j = 1, ny ), i = 1, nx ) ELSE - CALL errore ('plot_2ds', 'not implemented plot', 1) - + CALL errore ('plot_2ds', 'plot not implemented', 1) ENDIF ENDIF DEALLOCATE (carica) @@ -1099,24 +1071,15 @@ SUBROUTINE plot_3d (alat, at, nat, tau, atm, ityp, ngm, g, rhog, & rhomin, rhomax, rhotot, rhoabs IF (ionode) THEN - IF (output_format == 4) THEN - ! - ! "gOpenMol" file - ! - - CALL write_openmol_file (alat, at, nat, tau, atm, ityp, x0, & - m1, m2, m3, nx, ny, nz, rhomax, carica, ounit) - ELSE - ! user has calculated for very long, be nice and write some output even - ! if the output_format is wrong; use XSF format as default - - ! - ! XCRYSDEN's XSF format - ! - CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) - CALL xsf_datagrid_3d & + ! user has calculated for very long, be nice and write some output even + ! if the output_format is wrong; use XSF format as default + ! + ! XCRYSDEN's XSF format + ! + CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) + CALL xsf_datagrid_3d & (carica, nx, ny, nz, m1, m2, m3, x0, e1, e2, e3, alat, ounit) - ENDIF + ! ENDIF DEALLOCATE (carica) @@ -1236,111 +1199,18 @@ SUBROUTINE plot_fast (alat, at, nat, tau, atm, ityp,& WRITE(stdout, '(/5x,"Min, Max, Total, Abs charge: ",4f10.6)') rhomin, & rhomax, rhotot, rhoabs - - IF (output_format == 4) THEN - ! - ! "gopenmol" file - ! - CALL write_openmol_file (alat, at, nat, tau, atm, ityp, x0, & - m1, m2, m3, nx, ny, nz, rhomax, carica, ounit) - ELSE - ! - ! write XSF format - ! - CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) - CALL xsf_datagrid_3d (carica, nx, ny, nz, m1, m2, m3, x0, & + ! + ! write XSF format + ! + CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) + CALL xsf_datagrid_3d (carica, nx, ny, nz, m1, m2, m3, x0, & e1, e2, e3, alat, ounit) - ENDIF ! DEALLOCATE (carica) RETURN END SUBROUTINE plot_fast ! -!----------------------------------------------------------------------- -SUBROUTINE write_openmol_file (alat, at, nat, tau, atm, ityp, x0, & - m1, m2, m3, nx, ny, nz, rhomax, carica, ounit) - !----------------------------------------------------------------------- - USE io_global, ONLY : stdout - USE kinds, ONLY : DP - USE constants, ONLY : bohr => BOHR_RADIUS_ANGS, eps4 - IMPLICIT NONE - INTEGER :: nat, ityp (nat), nx, ny, nz, ounit - real(DP) :: alat, tau (3, nat), at (3, 3), rhomax, x0 (3), & - m1, m2, m3, carica (nx, ny, nz) - CHARACTER(len=3) :: atm(*) - ! - INTEGER, PARAMETER :: MAXATOMS = 999 - INTEGER :: natoms - CHARACTER(len=2) TYPE (MAXATOMS) - INTEGER :: n1, n2, n3, na, i - real(DP) :: atoms (3, MAXATOMS), r (3), x, y, z - real(DP) :: sidex, sidey, sidez - ! - ! sides of the parallelepiped in A - ! - sidex = m1 * alat * bohr - sidey = m2 * alat * bohr - sidez = m3 * alat * bohr - - ! really bad algorithm to generate (hopefully) all atoms - ! that are inside the visualization box - - natoms = 0 - DO n1 = - 3, + 3 - DO n2 = - 3, + 3 - DO n3 = - 3, + 3 - DO i = 1, 3 - r (i) = n1 * at (i, 1) + n2 * at (i, 2) + n3 * at (i, 3) - ENDDO - DO na = 1, nat - ! x,y,z are in A - x = (tau (1, na) + r (1) - x0 (1) ) * alat * bohr - y = (tau (2, na) + r (2) - x0 (2) ) * alat * bohr - z = (tau (3, na) + r (3) - x0 (3) ) * alat * bohr - IF ( x > -eps4 .and. x < sidex+eps4 .and. & - y > -eps4 .and. y < sidey+eps4 .and. & - z > -eps4 .and. z < sidez+eps4 ) THEN - natoms = natoms + 1 - IF (natoms>MAXATOMS) THEN - WRITE(stdout, '(" MAXATOMS (",i4,") Exceeded, " & - & ,"Truncating " )') MAXATOMS - natoms = MAXATOMS - GOTO 10 - ENDIF - ! - atoms (1, natoms) = x - atoms (2, natoms) = y - atoms (3, natoms) = z - ! - TYPE(natoms)=atm(ityp(na)) - ENDIF - ENDDO - ENDDO - ENDDO - - ENDDO - -10 WRITE( stdout,'(5x,"Found ",i4," atoms in the box")') natoms - WRITE(ounit,'(" 3 2")') - WRITE(ounit,'(3i5)') nz,ny,nx - WRITE(ounit,'(6f10.4)') 0.0d0,sidez,0.0d0,sidey,0.0d0,sidex - DO n3=1,nz - DO n2 = 1, ny - DO n1 = 1, nx - WRITE (ounit, '(f20.10)') carica (n1, n2, n3) - ENDDO - ENDDO - ENDDO - ! - ! gopenmol needs atomic positions in a separate file - ! - WRITE(ounit+1,'(i4,/)') natoms - WRITE(ounit+1,'(2x,a2,3f9.4)') (TYPE(na),( atoms(i,na), i=1,3 ), na=1,natoms ) - ! - RETURN -END SUBROUTINE write_openmol_file -! SUBROUTINE isostm_plot(rhor, nr1x, nr2x, nr3x, & isovalue, heightmin, heightmax, direction) !----------------------------------------------------------------------- diff --git a/PP/src/make.depend b/PP/src/make.depend index a3349c2126ca1932306bcec68296f8cb3b723667..217cc093445f263c383aee5fa1abafb40c3db05c 100644 --- a/PP/src/make.depend +++ b/PP/src/make.depend @@ -452,7 +452,6 @@ plan_avg.o : ../../Modules/uspp.o plan_avg.o : ../../Modules/wavefunctions.o plan_avg.o : ../../PW/src/pwcom.o plan_avg.o : ../../UtilXlib/mp.o -plot_whole_cell.o : ../../Modules/kind.o plotband.o : ../../Modules/kind.o plotband.o : ../../Modules/parser.o poormanwannier.o : ../../Modules/becmod.o diff --git a/PP/src/plot_whole_cell.f90 b/PP/src/plot_whole_cell.f90 deleted file mode 100644 index c368adc813f9970c2a6d9f1d11875089ec20d2db..0000000000000000000000000000000000000000 --- a/PP/src/plot_whole_cell.f90 +++ /dev/null @@ -1,35 +0,0 @@ -! -! Copyright (C) 2004 Tone Kokalj -! This file is distributed under the terms of the -! GNU General Public License. See the file `License' -! in the root directory of the present distribution, -! or http://www.gnu.org/copyleft/gpl.txt . -! -SUBROUTINE plot_whole_cell (alat, at, nat, tau, atm, ityp, & - nr1, nr2, nr3, nr1x, nr2x, nr3x, rho, output_format, ounit) - USE kinds, ONLY : DP - IMPLICIT NONE - INTEGER :: nat, ityp (nat), output_format, ounit - INTEGER :: nr1x, nr2x, nr3x, nr1, nr2, nr3 - CHARACTER(len=3) :: atm(*) - real(DP) :: alat, tau (3, nat), at (3, 3), rho(2, nr1x,nr2x,nr3x) - - IF ( output_format == 3 ) THEN - ! - ! XCRYSDEN FORMAT - ! - CALL xsf_struct (alat, at, nat, tau, atm, ityp, ounit) - CALL xsf_fast_datagrid_3d & - (rho, nr1, nr2, nr3, nr1x, nr2x, nr3x, at, alat, ounit) - - ELSEIF ( output_format == 4 ) THEN - ! - ! gOpenMol format - ! - - ! not yet implemented - ! add code here ... - ELSE - CALL errore('plot_whole_cell', 'wrong output_format', 1) - ENDIF -END SUBROUTINE plot_whole_cell diff --git a/test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-1.in b/test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-1.in similarity index 100% rename from test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-1.in rename to test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-1.in diff --git a/test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-2.in b/test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-2.in similarity index 100% rename from test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-2.in rename to test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-2.in diff --git a/test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-3.in b/test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-3.in similarity index 100% rename from test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-3.in rename to test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-3.in diff --git a/test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-4.in b/test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-4.in similarity index 100% rename from test-suite/cp_h2o/benchmark.out.SVN.inp=h2o-mt-blyp-4.in rename to test-suite/cp_h2o/benchmark.out.git.inp=h2o-mt-blyp-4.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-1.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-1.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-1.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-1.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-2.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-2.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-2.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-2.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-3.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-3.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-3.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-3.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-4.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-4.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-4.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-4.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-5.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-5.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-5.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-5.in diff --git a/test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-6.in b/test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-6.in similarity index 100% rename from test-suite/cp_o2/benchmark.out.SVN.inp=o2-us-para-pbe-6.in rename to test-suite/cp_o2/benchmark.out.git.inp=o2-us-para-pbe-6.in diff --git a/test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-1.in b/test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-1.in similarity index 100% rename from test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-1.in rename to test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-1.in diff --git a/test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-2.in b/test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-2.in similarity index 100% rename from test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-2.in rename to test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-2.in diff --git a/test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-3.in b/test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-3.in similarity index 100% rename from test-suite/cp_si/benchmark.out.SVN.inp=si-vbc-lda-3.in rename to test-suite/cp_si/benchmark.out.git.inp=si-vbc-lda-3.in diff --git a/test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-1.in b/test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-1.in similarity index 100% rename from test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-1.in rename to test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-1.in diff --git a/test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-2.in b/test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-2.in similarity index 100% rename from test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-2.in rename to test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-2.in diff --git a/test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-3.in b/test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-3.in similarity index 100% rename from test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-3.in rename to test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-3.in diff --git a/test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-4.in b/test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-4.in similarity index 100% rename from test-suite/cp_sio2/benchmark.out.SVN.inp=sio2-us-lda-4.in rename to test-suite/cp_sio2/benchmark.out.git.inp=sio2-us-lda-4.in diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw1.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw1.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw1.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw1.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw3.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw3.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw3.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw3.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw4.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw4.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw4.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw4.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw5.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw5.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw5.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw5.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw6.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw6.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw6.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw6.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw7.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw7.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw7.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw7.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw8.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw8.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw8.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw8.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=epw9.in.args=3 b/test-suite/epw_base/benchmark.out.git.inp=epw9.in.args=3 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=epw9.in.args=3 rename to test-suite/epw_base/benchmark.out.git.inp=epw9.in.args=3 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_base/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_base/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_base/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_base/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_base/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_base/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_base/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_base/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_base/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_base/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_metal/benchmark.out.SVN.inp=epw.in.args=3 b/test-suite/epw_metal/benchmark.out.git.inp=epw.in.args=3 similarity index 100% rename from test-suite/epw_metal/benchmark.out.SVN.inp=epw.in.args=3 rename to test-suite/epw_metal/benchmark.out.git.inp=epw.in.args=3 diff --git a/test-suite/epw_metal/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_metal/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_metal/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_metal/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_metal/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_metal/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_metal/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_metal/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_metal/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_metal/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_metal/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_metal/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=epw1.in.args=3 b/test-suite/epw_mob/benchmark.out.git.inp=epw1.in.args=3 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=epw1.in.args=3 rename to test-suite/epw_mob/benchmark.out.git.inp=epw1.in.args=3 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_mob/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_mob/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=epw3.in.args=3 b/test-suite/epw_mob/benchmark.out.git.inp=epw3.in.args=3 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=epw3.in.args=3 rename to test-suite/epw_mob/benchmark.out.git.inp=epw3.in.args=3 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=epw4.in.args=3 b/test-suite/epw_mob/benchmark.out.git.inp=epw4.in.args=3 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=epw4.in.args=3 rename to test-suite/epw_mob/benchmark.out.git.inp=epw4.in.args=3 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=nscf.in.args=1 b/test-suite/epw_mob/benchmark.out.git.inp=nscf.in.args=1 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=nscf.in.args=1 rename to test-suite/epw_mob/benchmark.out.git.inp=nscf.in.args=1 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_mob/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_mob/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=q2r.in.args=4 b/test-suite/epw_mob/benchmark.out.git.inp=q2r.in.args=4 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=q2r.in.args=4 rename to test-suite/epw_mob/benchmark.out.git.inp=q2r.in.args=4 diff --git a/test-suite/epw_mob/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_mob/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_mob/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_mob/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw1.in.args=3 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=epw1.in.args=3 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw1.in.args=3 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=epw1.in.args=3 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw3.in.args=3 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=epw3.in.args=3 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw3.in.args=3 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=epw3.in.args=3 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw4.in.args=3 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=epw4.in.args=3 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=epw4.in.args=3 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=epw4.in.args=3 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=nscf.in.args=1 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=nscf.in.args=1 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=nscf.in.args=1 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=nscf.in.args=1 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=q2r.in.args=4 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=q2r.in.args=4 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=q2r.in.args=4 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=q2r.in.args=4 diff --git a/test-suite/epw_mob_ibte/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_mob_ibte/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_mob_ibte/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_mob_ibte/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_mob_ibte/si.xml b/test-suite/epw_mob_ibte/si.xml deleted file mode 100644 index bdf7fd6f47272bca0ddefe2fc9cc3d5a987a3ca7..0000000000000000000000000000000000000000 --- a/test-suite/epw_mob_ibte/si.xml +++ /dev/null @@ -1,2359 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<qes:espresso xsi:schemaLocation="http://www.quantum-espresso.org/ns/qes/qes-1.0 http://www.quantum-espresso.org/ns/qes/qes-1.0.xsd" Units="Hartree atomic units" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:qes="http://www.quantum-espresso.org/ns/qes/qes-1.0"> - <!--If not explicitely indicated, all quantities are expressed in Hartree atomic units--> - <general_info> - <xml_format NAME="QEXSD" VERSION="0.1.0">QEXSD_0.1.0</xml_format> - <creator NAME="PWSCF" VERSION="6.3rc">XML file generated by PWSCF</creator> - <created DATE="20Jun2018" TIME="12:27:10">This run was terminated on: 12:27:10 20 Jun 2018</created> - <job></job> - </general_info> - <parallel_info> - <nprocs>1</nprocs> - <nthreads>1</nthreads> - <ntasks>1</ntasks> - <nbgrp>1</nbgrp> - <npool>1</npool> - <ndiag>1</ndiag> - </parallel_info> - <input> - <control_variables> - <title></title> - <calculation>nscf</calculation> - <restart_mode>from_scratch</restart_mode> - <prefix>si</prefix> - <pseudo_dir>./</pseudo_dir> - <outdir>./</outdir> - <stress>false</stress> - <forces>false</forces> - <wf_collect>true</wf_collect> - <disk_io>low</disk_io> - <max_seconds>10000000</max_seconds> - <etot_conv_thr>1.000000000000e-4</etot_conv_thr> - <forc_conv_thr>1.000000000000e-3</forc_conv_thr> - <press_conv_thr>5.000000000000e-1</press_conv_thr> - <verbosity>low</verbosity> - <print_every>100000</print_every> - </control_variables> - <atomic_species ntyp="1"> - <species name="Si"> - <mass>2.808550000000000e1</mass> - <pseudo_file>Si_r.upf</pseudo_file> - </species> - </atomic_species> - <atomic_structure nat="2" alat="1.026200000000e1" bravais_index="2"> - <atomic_positions> - <atom name="Si" index="1">0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</atom> - <atom name="Si" index="2">2.565500000000000e0 2.565500000000000e0 2.565500000000000e0</atom> - </atomic_positions> - <cell> - <a1>-5.131000000000000e0 0.000000000000000e0 5.131000000000000e0</a1> - <a2>0.000000000000000e0 5.131000000000000e0 5.131000000000000e0</a2> - <a3>-5.131000000000000e0 5.131000000000000e0 0.000000000000000e0</a3> - </cell> - </atomic_structure> - <dft> - <functional>PBE</functional> - </dft> - <spin> - <lsda>false</lsda> - <noncolin>false</noncolin> - <spinorbit>false</spinorbit> - </spin> - <bands> - <nbnd>10</nbnd> - <tot_charge>0.000000000000000e0</tot_charge> - <occupations>fixed</occupations> - </bands> - <basis> - <ecutwfc>5.000000000000000e0</ecutwfc> - </basis> - <electron_control> - <diagonalization>cg</diagonalization> - <mixing_mode>plain</mixing_mode> - <mixing_beta>7.000000000000000e-1</mixing_beta> - <conv_thr>1.000000000000000e-13</conv_thr> - <mixing_ndim>8</mixing_ndim> - <max_nstep>100</max_nstep> - <real_space_q>false</real_space_q> - <tq_smoothing>false</tq_smoothing> - <tbeta_smoothing>false</tbeta_smoothing> - <diago_thr_init>0.000000000000000e0</diago_thr_init> - <diago_full_acc>false</diago_full_acc> - <diago_cg_maxiter>20</diago_cg_maxiter> - </electron_control> - <k_points_IBZ> - <nk>216</nk> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 3.333333333340000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 -6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 6.666666666660000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 1.000000000000000e0 -3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999999999e-1 1.166666666666000e0 -4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.166666666667000e0 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333340000e-1 1.000000000000000e0 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.333333333334000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666659999e-1 1.500000000000000e0 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">6.666666666659999e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">4.999999999999999e-1 1.166666666666000e0 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.500000000000000e0 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.666666666666000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 -6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 9.999778782798785e-13</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -4.999999999990000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999778782798785e-13 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 4.999999999990000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 6.666666666660000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010000e-1 8.333333333330001e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666669999e-1 9.999999999990001e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 6.666666666659999e-1 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.166666666666000e0 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 1.000088900582341e-12</k_point> - <k_point weight="4.629629629630e-3">6.666666666659999e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">4.999999999989999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333329999e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000088900582341e-12 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.499999999999000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666660000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340000e-1 -3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 4.999999999999999e-1 -4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 9.999778782798785e-13 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666660000e-1 3.333333333340000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330001e-1 5.000000000010000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999990001e-1 6.666666666669999e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 6.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 4.999999999990000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -9.999778782798785e-13</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -1.666666666669999e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-2.775557561562891e-17 3.333333333340000e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">3.333333333340000e-1 3.333333333340000e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 5.000000000010000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">9.999778782798785e-13 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.000000000001000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">4.999999999999999e-1 4.999999999999999e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666669999e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666669999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670001e-1 1.166666666667000e0 4.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 5.551115123125783e-17 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340001e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 5.000000000000000e-1 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 2.775557561562891e-17 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">2.775557561562891e-17 3.333333333340001e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 -3.333333333340000e-1 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333334000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.500000000000000e0 1.666666666659999e-1 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666670000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 0.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 1.000088900582341e-12</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 -3.333333333340000e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -9.999778782798785e-13 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000001000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 4.999999999990000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 -2.775557561562891e-17 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.333333333334000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 1.000000000001000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.666666666659999e-1 1.500000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.000061145006725e-12 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670001e-1 4.999999999990000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010001e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 -6.666666666659999e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 -4.999999999999999e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.500000000000000e0 -1.666666666659999e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666666000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 -6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -4.999999999989999e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999989999e-1 -3.333333333329999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 -1.666666666659999e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 1.000088900582341e-12 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.499999999999000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999999999e-1 -4.999999999999999e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666669999e-1 -3.333333333330000e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666669999e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 5.551115123125783e-17 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670001e-1 4.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 5.551115123125783e-17 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340001e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666659999e-1 -1.666666666659999e-1 1.500000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.000061145006725e-12 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.666666666670001e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 3.333333333340001e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 5.000000000010001e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999989999e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.666666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.499999999999000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - </k_points_IBZ> - <ion_control> - <ion_dynamics>none</ion_dynamics> - <remove_rigid_rot>false</remove_rigid_rot> - <refold_pos>false</refold_pos> - </ion_control> - <cell_control> - <cell_dynamics>none</cell_dynamics> - <pressure>0.000000000000000e0</pressure> - <wmass>5.119673452481189e4</wmass> - <cell_factor>0.000000000000000e0</cell_factor> - <free_cell rank="2" dims="3 3" order="F"> - 1 1 1 - 1 1 1 - 1 1 1 - </free_cell> - </cell_control> - <symmetry_flags> - <nosym>false</nosym> - <nosym_evc>false</nosym_evc> - <noinv>false</noinv> - <no_t_rev>false</no_t_rev> - <force_symmorphic>false</force_symmorphic> - <use_all_frac>false</use_all_frac> - </symmetry_flags> - </input> - <output> - <convergence_info> - <scf_conv> - <n_scf_steps>1</n_scf_steps> - <scf_error>0.000000000000000e0</scf_error> - </scf_conv> - </convergence_info> - <algorithmic_info> - <real_space_q>false</real_space_q> - <uspp>false</uspp> - <paw>false</paw> - </algorithmic_info> - <atomic_species ntyp="1" pseudo_dir="./"> - <species name="Si"> - <mass>2.808550000000000e1</mass> - <pseudo_file>Si_r.upf</pseudo_file> - </species> - </atomic_species> - <atomic_structure nat="2" alat="1.026200000000e1" bravais_index="2"> - <atomic_positions> - <atom name="Si" index="1">0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</atom> - <atom name="Si" index="2">2.565500000000000e0 2.565500000000000e0 2.565500000000000e0</atom> - </atomic_positions> - <cell> - <a1>-5.131000000000000e0 0.000000000000000e0 5.131000000000000e0</a1> - <a2>0.000000000000000e0 5.131000000000000e0 5.131000000000000e0</a2> - <a3>-5.131000000000000e0 5.131000000000000e0 0.000000000000000e0</a3> - </cell> - </atomic_structure> - <symmetries> - <nsym>24</nsym> - <nrot>48</nrot> - <space_group>0</space_group> - <symmetry> - <info name="identity">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [0,0,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [0,1,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [1,0,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [-1,-1,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [-1,1,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [1,1,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [1,-1,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [1,1,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [-1,1,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [1,-1,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="120 deg rotation - cart. axis [-1,-1,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [1,1,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [1,-1,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [0,0,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [0,0,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [1,0,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [-1,0,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [0,1,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [0,-1,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [0,1,1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [0,1,-1]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [-1,0,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inv. 90 deg rotation - cart. axis [1,0,0]">crystal_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 -1.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 1.000000000000000e0 0.000000000000000e0 - </rotation> - <fractional_translation>0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</fractional_translation> - <equivalent_atoms nat="2" size="2">1 2</equivalent_atoms> - </symmetry> - <symmetry> - <info name="inversion">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [0,0,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [0,1,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 180 deg rotation - cart. axis [1,0,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [0,1,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [0,1,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [-1,0,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [1,0,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [1,1,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [1,-1,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [0,0,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [0,0,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [1,0,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="180 deg rotation - cart. axis [-1,0,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [0,1,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name=" 90 deg rotation - cart. axis [0,-1,0]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [-1,-1,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [-1,1,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [1,1,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [1,-1,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [1,1,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [-1,1,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [1,-1,-1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - 0.000000000000000e0 0.000000000000000e0 -1.000000000000000e0 - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - <symmetry> - <info name="inv. 120 deg rotation - cart. axis [-1,-1,1]">lattice_symmetry</info> - <rotation rank="2" dims="3 3" order="F"> - -1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 - 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 - 0.000000000000000e0 -1.000000000000000e0 0.000000000000000e0 - </rotation> - </symmetry> - </symmetries> - <basis_set> - <gamma_only>false</gamma_only> - <ecutwfc>5.000000000000000e0</ecutwfc> - <ecutrho>2.000000000000000e1</ecutrho> - <fft_grid nr1="15" nr2="15" nr3="15"/> - <fft_smooth nr1="15" nr2="15" nr3="15"/> - <ngm>1139</ngm> - <ngms>1139</ngms> - <npwx>150</npwx> - <reciprocal_lattice> - <b1>-1.000000000000000e0 -1.000000000000000e0 1.000000000000000e0</b1> - <b2>1.000000000000000e0 1.000000000000000e0 1.000000000000000e0</b2> - <b3>-1.000000000000000e0 1.000000000000000e0 -1.000000000000000e0</b3> - </reciprocal_lattice> - </basis_set> - <dft> - <functional>PBE</functional> - </dft> - <magnetization> - <lsda>false</lsda> - <noncolin>false</noncolin> - <spinorbit>false</spinorbit> - <total>0.000000000000000e0</total> - <absolute>0.000000000000000e0</absolute> - <do_magnetization>false</do_magnetization> - </magnetization> - <total_energy> - <etot>0.000000000000000e0</etot> - <eband>0.000000000000000e0</eband> - <ehart>5.361177879268071e-1</ehart> - <vtxc>-3.229288157761562e0</vtxc> - <etxc>-3.087816699278983e0</etxc> - <ewald>0.000000000000000e0</ewald> - </total_energy> - <band_structure> - <lsda>false</lsda> - <noncolin>false</noncolin> - <spinorbit>false</spinorbit> - <nbnd>10</nbnd> - <nelec>8.000000000000000e0</nelec> - <num_of_atomic_wfc>8</num_of_atomic_wfc> - <wf_collected>true</wf_collected> - <highestOccupiedLevel>2.298873656635603e-1</highestOccupiedLevel> - <starting_k_points> - <nk>216</nk> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 3.333333333340000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 -6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 6.666666666660000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 1.000000000000000e0 -3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999999999e-1 1.166666666666000e0 -4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.166666666667000e0 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333340000e-1 1.000000000000000e0 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.333333333334000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666659999e-1 1.500000000000000e0 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">6.666666666659999e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">4.999999999999999e-1 1.166666666666000e0 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.500000000000000e0 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.666666666666000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 -6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 9.999778782798785e-13</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -4.999999999990000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999778782798785e-13 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 4.999999999990000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 6.666666666660000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010000e-1 8.333333333330001e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666669999e-1 9.999999999990001e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 6.666666666659999e-1 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.166666666666000e0 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 1.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 1.000088900582341e-12</k_point> - <k_point weight="4.629629629630e-3">6.666666666659999e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">4.999999999989999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333329999e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000088900582341e-12 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.499999999999000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666660000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340000e-1 -3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 4.999999999999999e-1 -4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 9.999778782798785e-13 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666660000e-1 3.333333333340000e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330001e-1 5.000000000010000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999990001e-1 6.666666666669999e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 6.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 4.999999999990000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 -9.999778782798785e-13</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 -1.666666666669999e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-2.775557561562891e-17 3.333333333340000e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">3.333333333340000e-1 3.333333333340000e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 5.000000000010000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">9.999778782798785e-13 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.000000000001000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">4.999999999999999e-1 4.999999999999999e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 6.666666666669999e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666669999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670001e-1 1.166666666667000e0 4.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 5.551115123125783e-17 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340001e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 5.000000000000000e-1 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 2.775557561562891e-17 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">2.775557561562891e-17 3.333333333340001e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666660000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 1.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">1.666666666660000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-5.551115123125783e-17 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 -3.333333333340000e-1 3.333333333340000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333334000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.500000000000000e0 1.666666666659999e-1 -1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666670000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 0.000000000000000e0 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 1.000088900582341e-12</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340000e-1 -3.333333333340000e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 -9.999778782798785e-13 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000001000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 4.999999999990000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 -2.775557561562891e-17 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 1.666666666660000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333340001e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 6.666666666659999e-1 3.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.333333333334000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 1.000000000001000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <k_point weight="4.629629629630e-3">1.666666666659999e-1 1.666666666659999e-1 1.500000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-1.000061145006725e-12 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670001e-1 4.999999999990000e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333340001e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000010001e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -8.333333333330000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 -6.666666666659999e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 -4.999999999999999e-1 4.999999999999999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.500000000000000e0 -1.666666666659999e-1 1.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666666000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 -6.666666666659999e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -4.999999999989999e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999989999e-1 -3.333333333329999e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 -1.666666666659999e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 1.000088900582341e-12 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.499999999999000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">-4.999999999999999e-1 -4.999999999999999e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666669999e-1 -3.333333333330000e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 -1.666666666669999e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 5.551115123125783e-17 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666667000e0 1.666666666670001e-1 4.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.333333333333000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 -3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 5.551115123125783e-17 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.000000000000000e0 3.333333333340001e-1 6.666666666659999e-1</k_point> - <k_point weight="4.629629629630e-3">-1.166666666666000e0 5.000000000000000e-1 5.000000000000000e-1</k_point> - <k_point weight="4.629629629630e-3">-1.666666666659999e-1 -1.666666666659999e-1 1.500000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 1.000061145006725e-12 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-4.999999999990000e-1 1.666666666670001e-1 1.166666666667000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666659999e-1 3.333333333340001e-1 1.000000000000000e0</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 5.000000000010001e-1 8.333333333330000e-1</k_point> - <k_point weight="4.629629629630e-3">-9.999999999989999e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <k_point weight="4.629629629630e-3">0.000000000000000e0 0.000000000000000e0 1.666666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-1.666666666670000e-1 1.666666666670000e-1 1.499999999999000e0</k_point> - <k_point weight="4.629629629630e-3">-3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <k_point weight="4.629629629630e-3">-5.000000000000000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <k_point weight="4.629629629630e-3">-6.666666666670000e-1 6.666666666670000e-1 9.999999999989999e-1</k_point> - <k_point weight="4.629629629630e-3">-8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - </starting_k_points> - <nks>216</nks> - <occupations_kind>fixed</occupations_kind> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>137</npw> - <eigenvalues size="10">-2.034961353435167e-1 2.298873656635605e-1 2.298873656635605e-1 2.298873656635603e-1 3.249704102586825e-1 3.249704102586827e-1 3.249704102586829e-1 3.795294578212770e-1 5.296743183244855e-1 5.296743183244866e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806291e-1 1.443359024616770e-1 2.126955944941989e-1 2.126955944941987e-1 3.240345134878422e-1 3.489541386410076e-1 3.489541386410083e-1 4.407112633470963e-1 5.005812596575340e-1 5.005812596575383e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783694e-1 3.630895585028379e-2 1.920983541990231e-1 1.920983541990232e-1 3.066154792642342e-1 3.613247736486385e-1 3.613247736486385e-1 5.205956535359863e-1 5.338466477022610e-1 5.338466477022610e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <npw>138</npw> - <eigenvalues size="10">-1.179967873069363e-1 -2.270526566180902e-2 1.845335218282735e-1 1.845335218282735e-1 3.068528972030976e-1 3.558750418993156e-1 3.558750418993158e-1 5.164721742499854e-1 6.371517420003386e-1 6.371517420003451e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 -6.666666666670000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783691e-1 3.630895585028380e-2 1.920983541990231e-1 1.920983541990229e-1 3.066154792642346e-1 3.613247736486385e-1 3.613247736486387e-1 5.205956535359903e-1 5.338466477022576e-1 5.338466477022608e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 -8.333333333330000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806288e-1 1.443359024616769e-1 2.126955944941987e-1 2.126955944941987e-1 3.240345134878420e-1 3.489541386410083e-1 3.489541386410080e-1 4.407112633470968e-1 5.005812596575341e-1 5.005812596575345e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806286e-1 1.443359024616774e-1 2.126955944941987e-1 2.126955944941990e-1 3.240345134878416e-1 3.489541386410081e-1 3.489541386410080e-1 4.407112633470971e-1 5.005812596575375e-1 5.005812596575375e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 3.333333333340000e-1 0.000000000000000e0</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043955e-1 1.593332332317127e-1 1.852306636237824e-1 1.852306636237826e-1 2.955497725323912e-1 3.916618184995507e-1 3.916618184995511e-1 3.963296367911929e-1 4.854702708491184e-1 5.467114915490088e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666660000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806362e-1 7.084507918618360e-2 1.571666544543254e-1 1.645213605061904e-1 3.067391714940966e-1 3.855790677689175e-1 4.021296839693698e-1 4.199439866686242e-1 5.760215968977246e-1 5.766124642324126e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921063e-1 -9.504761102058522e-3 1.287742443349598e-1 1.631920377966525e-1 3.111851826114710e-1 3.887602881088802e-1 4.035149582456925e-1 4.718402365099226e-1 5.814612522094709e-1 6.298180119205666e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 8.333333333340001e-1 -5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384631e-1 1.265217562275607e-2 1.184911614044584e-1 1.809098290213067e-1 3.274189270471041e-1 3.881608180009103e-1 3.883251928107404e-1 5.034535584271364e-1 5.086284098609186e-1 5.814401648479216e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 1.000000000000000e0 -6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475263e-1 9.747155403103502e-2 1.407148038789276e-1 2.083323323647487e-1 3.487473951002427e-1 3.619912758791231e-1 3.773265446391942e-1 4.445947935326203e-1 4.635857218515996e-1 5.887785922120167e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783694e-1 3.630895585028387e-2 1.920983541990231e-1 1.920983541990232e-1 3.066154792642347e-1 3.613247736486389e-1 3.613247736486391e-1 5.205956535359868e-1 5.338466477022571e-1 5.338466477022590e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666660000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618357e-2 1.571666544543255e-1 1.645213605061906e-1 3.067391714940967e-1 3.855790677689179e-1 4.021296839693696e-1 4.199439866686242e-1 5.760215968977259e-1 5.766124642324164e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 6.666666666660000e-1 0.000000000000000e0</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454060e-1 5.151336353212259e-2 1.396217489812234e-1 1.396217489812237e-1 2.626339981620212e-1 3.088615740563547e-1 5.015309695266582e-1 5.015309695266592e-1 6.036914479511957e-1 6.066893527001742e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 8.333333333330000e-1 -1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743713e-2 -4.488564341277480e-3 9.546244072012776e-2 1.344554897053332e-1 2.748639439213655e-1 3.361649293578199e-1 5.098868583316464e-1 5.123436090956912e-1 6.285357602508008e-1 6.382455384747921e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340000e-1 1.000000000000000e0 -3.333333333340000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941836e-2 -1.374743210474523e-2 6.672342192747792e-2 1.507933291448933e-1 2.936119204408430e-1 4.503230839634866e-1 4.709017445427590e-1 4.983991735662806e-1 5.086521516349739e-1 5.239075041274013e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-4.999999999999999e-1 1.166666666666000e0 -4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384632e-1 1.265217562275600e-2 1.184911614044582e-1 1.809098290213069e-1 3.274189270471032e-1 3.881608180008435e-1 3.883251928108069e-1 5.034535584271264e-1 5.086284098609246e-1 5.814401648479256e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>138</npw> - <eigenvalues size="10">-1.179967873069359e-1 -2.270526566180910e-2 1.845335218282736e-1 1.845335218282735e-1 3.068528972030981e-1 3.558750418993155e-1 3.558750418993155e-1 5.164721742499849e-1 6.371517420003300e-1 6.371517420003383e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058533e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088801e-1 4.035149582456929e-1 4.718402365099225e-1 5.814612522094718e-1 6.298180119205615e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743709e-2 -4.488564341277527e-3 9.546244072012783e-2 1.344554897053330e-1 2.748639439213653e-1 3.361649293578215e-1 5.098868583316465e-1 5.123436090956909e-1 6.285357602507955e-1 6.382455384747980e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 1.000000000000000e0 0.000000000000000e0</k_point> - <npw>150</npw> - <eigenvalues size="10">-5.203891000247145e-2 -5.203819847247454e-2 1.233289638510696e-1 1.233289638510697e-1 2.613573339722190e-1 2.613574228544175e-1 6.027065927069135e-1 6.027065927069133e-1 6.520704338896477e-1 6.520704338896476e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.166666666667000e0 -1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743732e-2 -4.488564341277496e-3 9.546244072012783e-2 1.344554897053332e-1 2.748639439213653e-1 3.361649293578220e-1 5.098868583316463e-1 5.123436090956912e-1 6.285357602507934e-1 6.382455384747965e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 1.333333333333000e0 -3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921063e-1 -9.504761102058518e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114707e-1 3.887602881088801e-1 4.035149582456924e-1 4.718402365099228e-1 5.814612522094718e-1 6.298180119205654e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783691e-1 3.630895585028378e-2 1.920983541990229e-1 1.920983541990230e-1 3.066154792642345e-1 3.613247736486387e-1 3.613247736486385e-1 5.205956535359847e-1 5.338466477022600e-1 5.338466477022616e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275601e-2 1.184911614044583e-1 1.809098290213069e-1 3.274189270471041e-1 3.881608180008480e-1 3.883251928108018e-1 5.034535584271335e-1 5.086284098609161e-1 5.814401648479257e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333340000e-1 1.000000000000000e0 3.333333333340000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941852e-2 -1.374743210474526e-2 6.672342192747776e-2 1.507933291448933e-1 2.936119204408432e-1 4.503230839634858e-1 4.709017445427595e-1 4.983991735662807e-1 5.086521516349736e-1 5.239075041274004e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743714e-2 -4.488564341277518e-3 9.546244072012787e-2 1.344554897053331e-1 2.748639439213653e-1 3.361649293578219e-1 5.098868583316464e-1 5.123436090956908e-1 6.285357602507928e-1 6.382455384747993e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 1.333333333334000e0 0.000000000000000e0</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454060e-1 5.151336353212264e-2 1.396217489812237e-1 1.396217489812235e-1 2.626339981620214e-1 3.088615740563547e-1 5.015309695266587e-1 5.015309695266589e-1 6.036914479511932e-1 6.066893527001749e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666659999e-1 1.500000000000000e0 -1.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618356e-2 1.571666544543255e-1 1.645213605061908e-1 3.067391714940966e-1 3.855790677689179e-1 4.021296839693701e-1 4.199439866686241e-1 5.760215968977269e-1 5.766124642324182e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806289e-1 1.443359024616769e-1 2.126955944941988e-1 2.126955944941989e-1 3.240345134878425e-1 3.489541386410079e-1 3.489541386410076e-1 4.407112633470973e-1 5.005812596575312e-1 5.005812596575364e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">6.666666666659999e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475262e-1 9.747155403103534e-2 1.407148038789277e-1 2.083323323647487e-1 3.487473951002428e-1 3.619912758791229e-1 3.773265446391942e-1 4.445947935326203e-1 4.635857218515994e-1 5.887785922120102e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">4.999999999999999e-1 1.166666666666000e0 4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275602e-2 1.184911614044583e-1 1.809098290213069e-1 3.274189270471035e-1 3.881608180008436e-1 3.883251928108073e-1 5.034535584271262e-1 5.086284098609250e-1 5.814401648479254e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058520e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088802e-1 4.035149582456925e-1 4.718402365099216e-1 5.814612522094701e-1 6.298180119205622e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666659999e-1 1.500000000000000e0 1.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618350e-2 1.571666544543256e-1 1.645213605061906e-1 3.067391714940967e-1 3.855790677689175e-1 4.021296839693700e-1 4.199439866686241e-1 5.760215968977256e-1 5.766124642324167e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 1.666666666666000e0 0.000000000000000e0</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043960e-1 1.593332332317126e-1 1.852306636237826e-1 1.852306636237828e-1 2.955497725323922e-1 3.916618184995509e-1 3.916618184995527e-1 3.963296367911926e-1 4.854702708491184e-1 5.467114915490110e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806291e-1 1.443359024616772e-1 2.126955944941986e-1 2.126955944941990e-1 3.240345134878417e-1 3.489541386410083e-1 3.489541386410075e-1 4.407112633470968e-1 5.005812596575345e-1 5.005812596575387e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043957e-1 1.593332332317128e-1 1.852306636237828e-1 1.852306636237829e-1 2.955497725323921e-1 3.916618184995521e-1 3.916618184995550e-1 3.963296367911888e-1 4.854702708491200e-1 5.467114915490056e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 1.666666666660000e-1 -1.666666666660000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806364e-1 7.084507918618332e-2 1.571666544543255e-1 1.645213605061903e-1 3.067391714940965e-1 3.855790677689173e-1 4.021296839693697e-1 4.199439866686243e-1 5.760215968977271e-1 5.766124642324176e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058508e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088799e-1 4.035149582456924e-1 4.718402365099221e-1 5.814612522094712e-1 6.298180119205663e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333340001e-1 5.000000000000000e-1 -5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275603e-2 1.184911614044585e-1 1.809098290213069e-1 3.274189270471042e-1 3.881608180008442e-1 3.883251928108063e-1 5.034535584271302e-1 5.086284098609212e-1 5.814401648479253e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 6.666666666659999e-1 -6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475262e-1 9.747155403103530e-2 1.407148038789279e-1 2.083323323647485e-1 3.487473951002431e-1 3.619912758791227e-1 3.773265446391942e-1 4.445947935326202e-1 4.635857218515993e-1 5.887785922120116e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 3.333333333340000e-1</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043957e-1 1.593332332317128e-1 1.852306636237828e-1 1.852306636237827e-1 2.955497725323916e-1 3.916618184995512e-1 3.916618184995508e-1 3.963296367911926e-1 4.854702708491186e-1 5.467114915490123e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806291e-1 1.443359024616770e-1 2.126955944941987e-1 2.126955944941986e-1 3.240345134878425e-1 3.489541386410084e-1 3.489541386410077e-1 4.407112633470966e-1 5.005812596575366e-1 5.005812596575385e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 9.999778782798785e-13</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477296e-1 9.747155403146490e-2 1.407148038792649e-1 2.083323323648925e-1 3.487473951002825e-1 3.619912758789009e-1 3.773265446389422e-1 4.445947935326134e-1 4.635857218516424e-1 5.887785922112931e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 -1.666666666660000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275604e-2 1.184911614044583e-1 1.809098290213069e-1 3.274189270471043e-1 3.881608180008541e-1 3.883251928107975e-1 5.034535584271338e-1 5.086284098609150e-1 5.814401648479246e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 -3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058529e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088803e-1 4.035149582456922e-1 4.718402365099225e-1 5.814612522094680e-1 6.298180119205684e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 -4.999999999990000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803889e-1 7.084507918560591e-2 1.571666544541246e-1 1.645213605061209e-1 3.067391714941712e-1 3.855790677691522e-1 4.021296839693056e-1 4.199439866686103e-1 5.760215968981219e-1 5.766124642330743e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666660000e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618341e-2 1.571666544543253e-1 1.645213605061906e-1 3.067391714940966e-1 3.855790677689176e-1 4.021296839693696e-1 4.199439866686241e-1 5.760215968977239e-1 5.766124642324186e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-9.999778782798785e-13 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477294e-1 9.747155403146490e-2 1.407148038792649e-1 2.083323323648925e-1 3.487473951002833e-1 3.619912758789014e-1 3.773265446389421e-1 4.445947935326139e-1 4.635857218516427e-1 5.887785922112921e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 4.999999999990000e-1 1.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806944e-1 7.084507918603144e-2 1.571666544546132e-1 1.645213605063805e-1 3.067391714944156e-1 3.855790677693689e-1 4.021296839689491e-1 4.199439866681267e-1 5.760215968974828e-1 5.766124642322650e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340000e-1 6.666666666660000e-1 0.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671991e-2 9.802573835425424e-2 1.445813957543742e-1 3.394813742950645e-1 3.717026803798148e-1 3.931233207286216e-1 4.953291963139063e-1 5.719303535373552e-1 6.011086850501184e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000010000e-1 8.333333333330001e-1 -1.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687436e-2 -1.597699245488653e-2 8.234319764568763e-2 1.272352941934459e-1 3.576030128546814e-1 3.685253110437957e-1 4.616062994922644e-1 4.756146302550507e-1 5.154333185338793e-1 6.516564862152054e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666669999e-1 9.999999999990001e-1 -3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410160e-1 2.827300962663328e-2 9.802573835432998e-2 1.445813957541102e-1 3.394813742946404e-1 3.717026803793966e-1 3.931233207291474e-1 4.953291963143351e-1 5.719303535379369e-1 6.011086850502540e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921067e-1 -9.504761102058549e-3 1.287742443349595e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088801e-1 4.035149582456925e-1 4.718402365099225e-1 5.814612522094711e-1 6.298180119205687e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666660000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275604e-2 1.184911614044583e-1 1.809098290213066e-1 3.274189270471036e-1 3.881608180008435e-1 3.883251928108067e-1 5.034535584271261e-1 5.086284098609248e-1 5.814401648479251e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.551115123125783e-17 6.666666666659999e-1 3.333333333340000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411238e-1 2.827300962671990e-2 9.802573835425438e-2 1.445813957543743e-1 3.394813742950645e-1 3.717026803798146e-1 3.931233207286216e-1 4.953291963139058e-1 5.719303535373536e-1 6.011086850501169e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743707e-2 -4.488564341277489e-3 9.546244072012788e-2 1.344554897053329e-1 2.748639439213654e-1 3.361649293578217e-1 5.098868583316463e-1 5.123436090956901e-1 6.285357602507919e-1 6.382455384747966e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340001e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616484e-2 -4.595646926856033e-2 9.480547115266049e-2 9.480550641328236e-2 3.367080102574080e-1 3.367082311067601e-1 4.857072024145046e-1 4.857072171348001e-1 6.298378724000383e-1 6.298383638281454e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 1.166666666666000e0 -1.666666666659999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667487e-2 -1.597699245494553e-2 8.234319764552067e-2 1.272352941931753e-1 3.576030128548275e-1 3.685253110440136e-1 4.616062994918409e-1 4.756146302546765e-1 5.154333185346354e-1 6.516564862153388e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384633e-1 1.265217562275600e-2 1.184911614044583e-1 1.809098290213067e-1 3.274189270471034e-1 3.881608180008438e-1 3.883251928108068e-1 5.034535584271270e-1 5.086284098609247e-1 5.814401648479253e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058524e-3 1.287742443349597e-1 1.631920377966524e-1 3.111851826114710e-1 3.887602881088803e-1 4.035149582456924e-1 4.718402365099212e-1 5.814612522094704e-1 6.298180119205634e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687430e-2 -1.597699245488655e-2 8.234319764568767e-2 1.272352941934459e-1 3.576030128546805e-1 3.685253110437957e-1 4.616062994922652e-1 4.756146302550501e-1 5.154333185338789e-1 6.516564862152013e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 1.000000000000000e0 3.333333333340001e-1</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616371e-2 -4.595646926856123e-2 9.480547115266127e-2 9.480550641328209e-2 3.367080102574073e-1 3.367082311067597e-1 4.857072024145033e-1 4.857072171348006e-1 6.298378724001612e-1 6.298383638280230e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743713e-2 -4.488564341277473e-3 9.546244072012788e-2 1.344554897053331e-1 2.748639439213650e-1 3.361649293578216e-1 5.098868583316456e-1 5.123436090956908e-1 6.285357602507958e-1 6.382455384747965e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 1.333333333333000e0 1.000088900582341e-12</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410158e-1 2.827300962663329e-2 9.802573835432998e-2 1.445813957541101e-1 3.394813742946407e-1 3.717026803793972e-1 3.931233207291474e-1 4.953291963143343e-1 5.719303535379360e-1 6.011086850502547e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">6.666666666659999e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475265e-1 9.747155403103534e-2 1.407148038789277e-1 2.083323323647489e-1 3.487473951002429e-1 3.619912758791229e-1 3.773265446391941e-1 4.445947935326205e-1 4.635857218515993e-1 5.887785922120104e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">4.999999999989999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803892e-1 7.084507918560588e-2 1.571666544541248e-1 1.645213605061209e-1 3.067391714941708e-1 3.855790677691520e-1 4.021296839693056e-1 4.199439866686103e-1 5.760215968981165e-1 5.766124642330776e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333329999e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410159e-1 2.827300962663331e-2 9.802573835433002e-2 1.445813957541100e-1 3.394813742946402e-1 3.717026803793968e-1 3.931233207291474e-1 4.953291963143353e-1 5.719303535379360e-1 6.011086850502543e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666659999e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667459e-2 -1.597699245494549e-2 8.234319764552069e-2 1.272352941931753e-1 3.576030128548275e-1 3.685253110440142e-1 4.616062994918409e-1 4.756146302546767e-1 5.154333185346358e-1 6.516564862153338e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000088900582341e-12 1.333333333333000e0 3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410157e-1 2.827300962663330e-2 9.802573835432998e-2 1.445813957541100e-1 3.394813742946403e-1 3.717026803793969e-1 3.931233207291474e-1 4.953291963143357e-1 5.719303535379355e-1 6.011086850502555e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.499999999999000e0 1.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803891e-1 7.084507918560607e-2 1.571666544541246e-1 1.645213605061210e-1 3.067391714941708e-1 3.855790677691519e-1 4.021296839693054e-1 4.199439866686104e-1 5.760215968981177e-1 5.766124642330751e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783694e-1 3.630895585028382e-2 1.920983541990231e-1 1.920983541990230e-1 3.066154792642348e-1 3.613247736486382e-1 3.613247736486384e-1 5.205956535359853e-1 5.338466477022612e-1 5.338466477022613e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.666666666660000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618338e-2 1.571666544543255e-1 1.645213605061904e-1 3.067391714940966e-1 3.855790677689174e-1 4.021296839693700e-1 4.199439866686242e-1 5.760215968977249e-1 5.766124642324179e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666660000e-1 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454061e-1 5.151336353212264e-2 1.396217489812237e-1 1.396217489812237e-1 2.626339981620212e-1 3.088615740563547e-1 5.015309695266591e-1 5.015309695266589e-1 6.036914479511948e-1 6.066893527001752e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277465e-3 9.546244072012783e-2 1.344554897053331e-1 2.748639439213652e-1 3.361649293578220e-1 5.098868583316465e-1 5.123436090956915e-1 6.285357602507911e-1 6.382455384747971e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 3.333333333340000e-1 -3.333333333340000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941814e-2 -1.374743210474521e-2 6.672342192747789e-2 1.507933291448933e-1 2.936119204408433e-1 4.503230839634859e-1 4.709017445427589e-1 4.983991735662821e-1 5.086521516349736e-1 5.239075041274026e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666666000e0 4.999999999999999e-1 -4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275603e-2 1.184911614044583e-1 1.809098290213068e-1 3.274189270471043e-1 3.881608180008440e-1 3.883251928108052e-1 5.034535584271320e-1 5.086284098609183e-1 5.814401648479246e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666660000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806363e-1 7.084507918618330e-2 1.571666544543255e-1 1.645213605061903e-1 3.067391714940966e-1 3.855790677689174e-1 4.021296839693696e-1 4.199439866686243e-1 5.760215968977292e-1 5.766124642324155e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 9.999778782798785e-13 3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477296e-1 9.747155403146515e-2 1.407148038792649e-1 2.083323323648925e-1 3.487473951002831e-1 3.619912758789012e-1 3.773265446389422e-1 4.445947935326135e-1 4.635857218516427e-1 5.887785922112950e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-4.999999999990000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806944e-1 7.084507918603173e-2 1.571666544546133e-1 1.645213605063806e-1 3.067391714944158e-1 3.855790677693686e-1 4.021296839689494e-1 4.199439866681262e-1 5.760215968974828e-1 5.766124642322610e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666660000e-1 3.333333333340000e-1 0.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671988e-2 9.802573835425427e-2 1.445813957543743e-1 3.394813742950643e-1 3.717026803798143e-1 3.931233207286220e-1 4.953291963139059e-1 5.719303535373516e-1 6.011086850501151e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330001e-1 5.000000000010000e-1 -1.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687421e-2 -1.597699245488651e-2 8.234319764568765e-2 1.272352941934460e-1 3.576030128546809e-1 3.685253110437957e-1 4.616062994922643e-1 4.756146302550507e-1 5.154333185338789e-1 6.516564862152081e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-9.999999999990001e-1 6.666666666669999e-1 -3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410159e-1 2.827300962663328e-2 9.802573835433012e-2 1.445813957541102e-1 3.394813742946407e-1 3.717026803793969e-1 3.931233207291469e-1 4.953291963143349e-1 5.719303535379355e-1 6.011086850502545e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 6.666666666660000e-1</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454059e-1 5.151336353212264e-2 1.396217489812237e-1 1.396217489812236e-1 2.626339981620213e-1 3.088615740563545e-1 5.015309695266586e-1 5.015309695266589e-1 6.036914479511942e-1 6.066893527001753e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 4.999999999990000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806947e-1 7.084507918603150e-2 1.571666544546130e-1 1.645213605063805e-1 3.067391714944156e-1 3.855790677693692e-1 4.021296839689495e-1 4.199439866681264e-1 5.760215968974900e-1 5.766124642322616e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783696e-1 3.630895585028382e-2 1.920983541990231e-1 1.920983541990231e-1 3.066154792642345e-1 3.613247736486380e-1 3.613247736486384e-1 5.205956535359850e-1 5.338466477022610e-1 5.338466477022614e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 1.666666666660000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384633e-1 1.265217562275601e-2 1.184911614044582e-1 1.809098290213068e-1 3.274189270471034e-1 3.881608180008436e-1 3.883251928108067e-1 5.034535584271258e-1 5.086284098609248e-1 5.814401648479248e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 -9.999778782798785e-13</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917338e-2 -1.374743210497212e-2 6.672342192744594e-2 1.507933291447385e-1 2.936119204406640e-1 4.503230839627866e-1 4.709017445431818e-1 4.983991735666185e-1 5.086521516353032e-1 5.239075041277595e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 -1.666666666669999e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743704e-2 -4.488564341277496e-3 9.546244072012776e-2 1.344554897053328e-1 2.748639439213654e-1 3.361649293578223e-1 5.098868583316463e-1 5.123436090956903e-1 6.285357602507961e-1 6.382455384747974e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743716e-2 -4.488564341277473e-3 9.546244072012783e-2 1.344554897053331e-1 2.748639439213653e-1 3.361649293578219e-1 5.098868583316460e-1 5.123436090956903e-1 6.285357602508035e-1 6.382455384747870e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-2.775557561562891e-17 3.333333333340000e-1 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671992e-2 9.802573835425408e-2 1.445813957543742e-1 3.394813742950648e-1 3.717026803798151e-1 3.931233207286218e-1 4.953291963139056e-1 5.719303535373552e-1 6.011086850501161e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666660000e-1 5.000000000000000e-1 4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275598e-2 1.184911614044583e-1 1.809098290213066e-1 3.274189270471036e-1 3.881608180008434e-1 3.883251928108067e-1 5.034535584271255e-1 5.086284098609246e-1 5.814401648479251e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921064e-1 -9.504761102058467e-3 1.287742443349598e-1 1.631920377966524e-1 3.111851826114713e-1 3.887602881088796e-1 4.035149582456925e-1 4.718402365099225e-1 5.814612522094706e-1 6.298180119205645e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 8.333333333340001e-1 1.666666666659999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667457e-2 -1.597699245494547e-2 8.234319764552069e-2 1.272352941931750e-1 3.576030128548276e-1 3.685253110440142e-1 4.616062994918410e-1 4.756146302546767e-1 5.154333185346358e-1 6.516564862153355e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 1.000000000000000e0 0.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755447946e-2 -4.595646927024549e-2 9.480547115284502e-2 9.480550641309820e-2 3.367080102574081e-1 3.367082311067597e-1 4.857072024145341e-1 4.857072171347706e-1 6.298378724049181e-1 6.298383638232634e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333340000e-1 3.333333333340000e-1 1.000000000000000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941816e-2 -1.374743210474522e-2 6.672342192747792e-2 1.507933291448933e-1 2.936119204408430e-1 4.503230839634856e-1 4.709017445427584e-1 4.983991735662813e-1 5.086521516349739e-1 5.239075041274022e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 5.000000000010000e-1 8.333333333330000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687436e-2 -1.597699245488656e-2 8.234319764568760e-2 1.272352941934459e-1 3.576030128546805e-1 3.685253110437963e-1 4.616062994922644e-1 4.756146302550505e-1 5.154333185338791e-1 6.516564862152102e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">9.999778782798785e-13 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917350e-2 -1.374743210497215e-2 6.672342192744598e-2 1.507933291447383e-1 2.936119204406645e-1 4.503230839627866e-1 4.709017445431813e-1 4.983991735666178e-1 5.086521516353026e-1 5.239075041277593e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666660000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667464e-2 -1.597699245494550e-2 8.234319764552065e-2 1.272352941931750e-1 3.576030128548276e-1 3.685253110440141e-1 4.616062994918419e-1 4.756146302546763e-1 5.154333185346357e-1 6.516564862153285e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 1.000000000001000e0 3.333333333330000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917338e-2 -1.374743210497211e-2 6.672342192744596e-2 1.507933291447382e-1 2.936119204406644e-1 4.503230839627873e-1 4.709017445431817e-1 4.983991735666192e-1 5.086521516353026e-1 5.239075041277601e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-4.999999999990000e-1 1.166666666667000e0 1.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687432e-2 -1.597699245488652e-2 8.234319764568747e-2 1.272352941934459e-1 3.576030128546808e-1 3.685253110437959e-1 4.616062994922639e-1 4.756146302550511e-1 5.154333185338791e-1 6.516564862152016e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">4.999999999999999e-1 4.999999999999999e-1 1.166666666666000e0</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275600e-2 1.184911614044583e-1 1.809098290213069e-1 3.274189270471037e-1 3.881608180008434e-1 3.883251928108071e-1 5.034535584271270e-1 5.086284098609246e-1 5.814401648479248e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 6.666666666669999e-1 9.999999999989999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410158e-1 2.827300962663324e-2 9.802573835433000e-2 1.445813957541102e-1 3.394813742946407e-1 3.717026803793970e-1 3.931233207291474e-1 4.953291963143350e-1 5.719303535379351e-1 6.011086850502534e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666669999e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277515e-3 9.546244072012787e-2 1.344554897053331e-1 2.748639439213653e-1 3.361649293578215e-1 5.098868583316452e-1 5.123436090956909e-1 6.285357602507975e-1 6.382455384747966e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.551115123125783e-17 1.000000000000000e0 6.666666666659999e-1</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616408e-2 -4.595646926856134e-2 9.480547115266111e-2 9.480550641328174e-2 3.367080102574080e-1 3.367082311067602e-1 4.857072024145062e-1 4.857072171347989e-1 6.298378724000361e-1 6.298383638281464e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670001e-1 1.166666666667000e0 4.999999999989999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687418e-2 -1.597699245488651e-2 8.234319764568763e-2 1.272352941934458e-1 3.576030128546806e-1 3.685253110437964e-1 4.616062994922637e-1 4.756146302550507e-1 5.154333185338789e-1 6.516564862152141e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 1.333333333333000e0 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921065e-1 -9.504761102058461e-3 1.287742443349595e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088802e-1 4.035149582456922e-1 4.718402365099223e-1 5.814612522094718e-1 6.298180119205652e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>138</npw> - <eigenvalues size="10">-1.179967873069363e-1 -2.270526566180910e-2 1.845335218282732e-1 1.845335218282735e-1 3.068528972030981e-1 3.558750418993158e-1 3.558750418993157e-1 5.164721742499849e-1 6.371517420003412e-1 6.371517420003430e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921065e-1 -9.504761102058515e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088807e-1 4.035149582456925e-1 4.718402365099225e-1 5.814612522094720e-1 6.298180119205652e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277494e-3 9.546244072012787e-2 1.344554897053331e-1 2.748639439213627e-1 3.361649293578213e-1 5.098868583316461e-1 5.123436090956912e-1 6.285357602507961e-1 6.382455384747978e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>150</npw> - <eigenvalues size="10">-5.203891000247144e-2 -5.203819847247453e-2 1.233289638510694e-1 1.233289638510694e-1 2.613573339722190e-1 2.613574228544171e-1 6.027065927069128e-1 6.027065927069126e-1 6.520704338896481e-1 6.520704338896506e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666667000e0 1.666666666670000e-1 -1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743709e-2 -4.488564341277513e-3 9.546244072012788e-2 1.344554897053331e-1 2.748639439213655e-1 3.361649293578217e-1 5.098868583316460e-1 5.123436090956916e-1 6.285357602507955e-1 6.382455384747979e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333333000e0 3.333333333330000e-1 -3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921063e-1 -9.504761102058508e-3 1.287742443349594e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088801e-1 4.035149582456922e-1 4.718402365099224e-1 5.814612522094709e-1 6.298180119205652e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921065e-1 -9.504761102058518e-3 1.287742443349592e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088794e-1 4.035149582456925e-1 4.718402365099221e-1 5.814612522094715e-1 6.298180119205650e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 -1.666666666660000e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384637e-1 1.265217562275605e-2 1.184911614044584e-1 1.809098290213069e-1 3.274189270471032e-1 3.881608180008440e-1 3.883251928108066e-1 5.034535584271266e-1 5.086284098609248e-1 5.814401648479257e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 5.551115123125783e-17 3.333333333340000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411240e-1 2.827300962672003e-2 9.802573835425422e-2 1.445813957543743e-1 3.394813742950649e-1 3.717026803798147e-1 3.931233207286218e-1 4.953291963139065e-1 5.719303535373554e-1 6.011086850501174e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743713e-2 -4.488564341277469e-3 9.546244072012772e-2 1.344554897053331e-1 2.748639439213654e-1 3.361649293578215e-1 5.098868583316460e-1 5.123436090956908e-1 6.285357602507925e-1 6.382455384747972e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 3.333333333340001e-1 0.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616464e-2 -4.595646926856024e-2 9.480547115266134e-2 9.480550641328167e-2 3.367080102574078e-1 3.367082311067592e-1 4.857072024145052e-1 4.857072171348005e-1 6.298378724028986e-1 6.298383638252849e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666666000e0 5.000000000000000e-1 -1.666666666659999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667464e-2 -1.597699245494546e-2 8.234319764552065e-2 1.272352941931747e-1 3.576030128548273e-1 3.685253110440140e-1 4.616062994918421e-1 4.756146302546767e-1 5.154333185346336e-1 6.516564862153383e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277463e-3 9.546244072012779e-2 1.344554897053331e-1 2.748639439213650e-1 3.361649293578222e-1 5.098868583316463e-1 5.123436090956903e-1 6.285357602507952e-1 6.382455384747985e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340000e-1 2.775557561562891e-17 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411238e-1 2.827300962671989e-2 9.802573835425394e-2 1.445813957543742e-1 3.394813742950653e-1 3.717026803798122e-1 3.931233207286213e-1 4.953291963139071e-1 5.719303535373568e-1 6.011086850501185e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 1.666666666660000e-1 4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275600e-2 1.184911614044582e-1 1.809098290213068e-1 3.274189270471031e-1 3.881608180008437e-1 3.883251928108068e-1 5.034535584271262e-1 5.086284098609246e-1 5.814401648479254e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921067e-1 -9.504761102058435e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088800e-1 4.035149582456924e-1 4.718402365099222e-1 5.814612522094706e-1 6.298180119205692e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333340001e-1 5.000000000000000e-1 1.666666666659999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667462e-2 -1.597699245494546e-2 8.234319764552069e-2 1.272352941931751e-1 3.576030128548276e-1 3.685253110440144e-1 4.616062994918416e-1 4.756146302546762e-1 5.154333185346356e-1 6.516564862153370e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 6.666666666659999e-1 0.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616502e-2 -4.595646926856029e-2 9.480547115266049e-2 9.480550641328243e-2 3.367080102574078e-1 3.367082311067600e-1 4.857072024145045e-1 4.857072171347999e-1 6.298378724000365e-1 6.298383638281497e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 1.000000000000000e0</k_point> - <npw>150</npw> - <eigenvalues size="10">-5.203891000247153e-2 -5.203819847247449e-2 1.233289638510696e-1 1.233289638510696e-1 2.613573339722190e-1 2.613574228544175e-1 6.027065927069133e-1 6.027065927069133e-1 6.520704338896481e-1 6.520704338896469e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743714e-2 -4.488564341277522e-3 9.546244072012765e-2 1.344554897053331e-1 2.748639439213652e-1 3.361649293578213e-1 5.098868583316454e-1 5.123436090956909e-1 6.285357602507958e-1 6.382455384747939e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058444e-3 1.287742443349595e-1 1.631920377966525e-1 3.111851826114709e-1 3.887602881088801e-1 4.035149582456928e-1 4.718402365099217e-1 5.814612522094709e-1 6.298180119205632e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>138</npw> - <eigenvalues size="10">-1.179967873069363e-1 -2.270526566180909e-2 1.845335218282733e-1 1.845335218282731e-1 3.068528972030978e-1 3.558750418993158e-1 3.558750418993160e-1 5.164721742499854e-1 6.371517420003407e-1 6.371517420003403e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058488e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114712e-1 3.887602881088802e-1 4.035149582456921e-1 4.718402365099225e-1 5.814612522094713e-1 6.298180119205623e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277501e-3 9.546244072012781e-2 1.344554897053330e-1 2.748639439213649e-1 3.361649293578215e-1 5.098868583316464e-1 5.123436090956912e-1 6.285357602507951e-1 6.382455384747971e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277504e-3 9.546244072012779e-2 1.344554897053331e-1 2.748639439213651e-1 3.361649293578219e-1 5.098868583316445e-1 5.123436090956899e-1 6.285357602507943e-1 6.382455384747954e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">2.775557561562891e-17 3.333333333340001e-1 1.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616485e-2 -4.595646926856062e-2 9.480547115266109e-2 9.480550641328222e-2 3.367080102574078e-1 3.367082311067602e-1 4.857072024145031e-1 4.857072171347997e-1 6.298378724714304e-1 6.298383637567556e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666660000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667478e-2 -1.597699245494547e-2 8.234319764552069e-2 1.272352941931751e-1 3.576030128548278e-1 3.685253110440137e-1 4.616062994918418e-1 4.756146302546769e-1 5.154333185346355e-1 6.516564862153363e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058485e-3 1.287742443349596e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088803e-1 4.035149582456924e-1 4.718402365099223e-1 5.814612522094709e-1 6.298180119205632e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 8.333333333340001e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275603e-2 1.184911614044583e-1 1.809098290213068e-1 3.274189270471033e-1 3.881608180008440e-1 3.883251928108070e-1 5.034535584271268e-1 5.086284098609245e-1 5.814401648479251e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 1.000000000000000e0 3.333333333340001e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671988e-2 9.802573835425438e-2 1.445813957543743e-1 3.394813742950645e-1 3.717026803798145e-1 3.931233207286220e-1 4.953291963139060e-1 5.719303535373550e-1 6.011086850501166e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058495e-3 1.287742443349595e-1 1.631920377966524e-1 3.111851826114712e-1 3.887602881088798e-1 4.035149582456925e-1 4.718402365099218e-1 5.814612522094706e-1 6.298180119205654e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666660000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667459e-2 -1.597699245494535e-2 8.234319764552067e-2 1.272352941931750e-1 3.576030128548278e-1 3.685253110440141e-1 4.616062994918418e-1 4.756146302546759e-1 5.154333185346359e-1 6.516564862153396e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.551115123125783e-17 6.666666666659999e-1 1.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616481e-2 -4.595646926856029e-2 9.480547115266065e-2 9.480550641328229e-2 3.367080102574077e-1 3.367082311067596e-1 4.857072024145044e-1 4.857072171347999e-1 6.298378724000361e-1 6.298383638281497e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743713e-2 -4.488564341277510e-3 9.546244072012787e-2 1.344554897053332e-1 2.748639439213654e-1 3.361649293578216e-1 5.098868583316454e-1 5.123436090956907e-1 6.285357602507966e-1 6.382455384747966e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340001e-1 1.000000000000000e0 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671988e-2 9.802573835425418e-2 1.445813957543745e-1 3.394813742950646e-1 3.717026803798148e-1 3.931233207286222e-1 4.953291963139062e-1 5.719303535373549e-1 6.011086850501167e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 1.166666666666000e0 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275604e-2 1.184911614044584e-1 1.809098290213069e-1 3.274189270471034e-1 3.881608180008437e-1 3.883251928108066e-1 5.034535584271270e-1 5.086284098609251e-1 5.814401648479254e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 -6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783695e-1 3.630895585028382e-2 1.920983541990227e-1 1.920983541990229e-1 3.066154792642345e-1 3.613247736486383e-1 3.613247736486386e-1 5.205956535359855e-1 5.338466477022590e-1 5.338466477022614e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333340001e-1 -5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275604e-2 1.184911614044583e-1 1.809098290213067e-1 3.274189270471046e-1 3.881608180008481e-1 3.883251928108020e-1 5.034535584271273e-1 5.086284098609192e-1 5.814401648479253e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 -3.333333333340000e-1 3.333333333340000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941818e-2 -1.374743210474523e-2 6.672342192747792e-2 1.507933291448933e-1 2.936119204408432e-1 4.503230839634867e-1 4.709017445427593e-1 4.983991735662816e-1 5.086521516349737e-1 5.239075041274019e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666667000e0 -1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743714e-2 -4.488564341277513e-3 9.546244072012787e-2 1.344554897053333e-1 2.748639439213654e-1 3.361649293578215e-1 5.098868583316460e-1 5.123436090956912e-1 6.285357602507988e-1 6.382455384747954e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333334000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454065e-1 5.151336353212273e-2 1.396217489812235e-1 1.396217489812234e-1 2.626339981620212e-1 3.088615740563542e-1 5.015309695266589e-1 5.015309695266589e-1 6.036914479511961e-1 6.066893527001752e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.500000000000000e0 1.666666666659999e-1 -1.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806360e-1 7.084507918618360e-2 1.571666544543255e-1 1.645213605061903e-1 3.067391714940966e-1 3.855790677689179e-1 4.021296839693697e-1 4.199439866686245e-1 5.760215968977378e-1 5.766124642324129e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 -5.000000000000000e-1 8.333333333340001e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275602e-2 1.184911614044583e-1 1.809098290213068e-1 3.274189270471035e-1 3.881608180008436e-1 3.883251928108069e-1 5.034535584271266e-1 5.086284098609248e-1 5.814401648479252e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 -3.333333333330000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058490e-3 1.287742443349595e-1 1.631920377966525e-1 3.111851826114712e-1 3.887602881088801e-1 4.035149582456924e-1 4.718402365099223e-1 5.814612522094706e-1 6.298180119205650e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 -1.666666666670000e-1 5.000000000010001e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687416e-2 -1.597699245488651e-2 8.234319764568763e-2 1.272352941934459e-1 3.576030128546808e-1 3.685253110437958e-1 4.616062994922640e-1 4.756146302550512e-1 5.154333185338773e-1 6.516564862152055e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 0.000000000000000e0 3.333333333340001e-1</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616532e-2 -4.595646926856041e-2 9.480547115266214e-2 9.480550641328128e-2 3.367080102574078e-1 3.367082311067601e-1 4.857072024145050e-1 4.857072171348004e-1 6.298378724255501e-1 6.298383638026336e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666667000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277524e-3 9.546244072012788e-2 1.344554897053332e-1 2.748639439213650e-1 3.361649293578215e-1 5.098868583316458e-1 5.123436090956908e-1 6.285357602507949e-1 6.382455384747978e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333333000e0 3.333333333330000e-1 1.000088900582341e-12</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410159e-1 2.827300962663331e-2 9.802573835433002e-2 1.445813957541102e-1 3.394813742946404e-1 3.717026803793972e-1 3.931233207291477e-1 4.953291963143355e-1 5.719303535379353e-1 6.011086850502545e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340000e-1 -3.333333333340000e-1 1.000000000000000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807941843e-2 -1.374743210474522e-2 6.672342192747792e-2 1.507933291448933e-1 2.936119204408429e-1 4.503230839634861e-1 4.709017445427581e-1 4.983991735662809e-1 5.086521516349743e-1 5.239075041274015e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000010000e-1 -1.666666666670000e-1 8.333333333330000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687437e-2 -1.597699245488652e-2 8.234319764568760e-2 1.272352941934459e-1 3.576030128546805e-1 3.685253110437958e-1 4.616062994922636e-1 4.756146302550512e-1 5.154333185338783e-1 6.516564862152086e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 -9.999778782798785e-13 6.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917340e-2 -1.374743210497214e-2 6.672342192744596e-2 1.507933291447383e-1 2.936119204406644e-1 4.503230839627873e-1 4.709017445431808e-1 4.983991735666191e-1 5.086521516353031e-1 5.239075041277593e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333340001e-1 1.666666666660000e-1 5.000000000000000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667464e-2 -1.597699245494549e-2 8.234319764552067e-2 1.272352941931750e-1 3.576030128548273e-1 3.685253110440141e-1 4.616062994918413e-1 4.756146302546767e-1 5.154333185346356e-1 6.516564862153313e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000001000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917324e-2 -1.374743210497216e-2 6.672342192744594e-2 1.507933291447383e-1 2.936119204406645e-1 4.503230839627870e-1 4.709017445431814e-1 4.983991735666187e-1 5.086521516353031e-1 5.239075041277585e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666667000e0 4.999999999990000e-1 1.666666666670000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687398e-2 -1.597699245488659e-2 8.234319764568763e-2 1.272352941934461e-1 3.576030128546808e-1 3.685253110437958e-1 4.616062994922646e-1 4.756146302550507e-1 5.154333185338794e-1 6.516564862152010e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 -1.666666666670000e-1 1.166666666667000e0</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743695e-2 -4.488564341277512e-3 9.546244072012787e-2 1.344554897053331e-1 2.748639439213652e-1 3.361649293578218e-1 5.098868583316458e-1 5.123436090956909e-1 6.285357602507938e-1 6.382455384747981e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340001e-1 -2.775557561562891e-17 1.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616458e-2 -4.595646926856067e-2 9.480547115266141e-2 9.480550641328140e-2 3.367080102574083e-1 3.367082311067597e-1 4.857072024145043e-1 4.857072171348010e-1 6.298378724156217e-1 6.298383638125604e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 1.666666666660000e-1 8.333333333340001e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667491e-2 -1.597699245494549e-2 8.234319764552069e-2 1.272352941931750e-1 3.576030128548276e-1 3.685253110440138e-1 4.616062994918419e-1 4.756146302546767e-1 5.154333185346358e-1 6.516564862153382e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 3.333333333330000e-1 6.666666666670000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921065e-1 -9.504761102058509e-3 1.287742443349594e-1 1.631920377966525e-1 3.111851826114710e-1 3.887602881088801e-1 4.035149582456924e-1 4.718402365099225e-1 5.814612522094723e-1 6.298180119205663e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333340001e-1 5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384635e-1 1.265217562275601e-2 1.184911614044580e-1 1.809098290213069e-1 3.274189270471047e-1 3.881608180008502e-1 3.883251928107997e-1 5.034535584271272e-1 5.086284098609228e-1 5.814401648479272e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 6.666666666659999e-1 3.333333333340001e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411238e-1 2.827300962671990e-2 9.802573835425441e-2 1.445813957543743e-1 3.394813742950661e-1 3.717026803798145e-1 3.931233207286213e-1 4.953291963139050e-1 5.719303535373543e-1 6.011086850501139e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 1.333333333334000e0</k_point> - <npw>141</npw> - <eigenvalues size="10">-1.325494237454063e-1 5.151336353212272e-2 1.396217489812237e-1 1.396217489812237e-1 2.626339981620210e-1 3.088615740563547e-1 5.015309695266587e-1 5.015309695266593e-1 6.036914479511947e-1 6.066893527001768e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 1.166666666667000e0</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743711e-2 -4.488564341277542e-3 9.546244072012787e-2 1.344554897053328e-1 2.748639439213653e-1 3.361649293578215e-1 5.098868583316458e-1 5.123436090956909e-1 6.285357602507990e-1 6.382455384747931e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 1.000000000001000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.225038807917345e-2 -1.374743210497216e-2 6.672342192744596e-2 1.507933291447383e-1 2.936119204406644e-1 4.503230839627869e-1 4.709017445431813e-1 4.983991735666192e-1 5.086521516353024e-1 5.239075041277585e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 8.333333333340001e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275602e-2 1.184911614044583e-1 1.809098290213067e-1 3.274189270471031e-1 3.881608180008433e-1 3.883251928108066e-1 5.034535584271267e-1 5.086284098609246e-1 5.814401648479254e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>144</npw> - <eigenvalues size="10">-1.529640570783694e-1 3.630895585028382e-2 1.920983541990230e-1 1.920983541990231e-1 3.066154792642344e-1 3.613247736486383e-1 3.613247736486382e-1 5.205956535359854e-1 5.338466477022617e-1 5.338466477022610e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 5.000000000010001e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806945e-1 7.084507918603167e-2 1.571666544546132e-1 1.645213605063805e-1 3.067391714944159e-1 3.855790677693689e-1 4.021296839689495e-1 4.199439866681267e-1 5.760215968974794e-1 5.766124642322650e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">1.666666666659999e-1 1.666666666659999e-1 1.500000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806363e-1 7.084507918618357e-2 1.571666544543255e-1 1.645213605061906e-1 3.067391714940966e-1 3.855790677689178e-1 4.021296839693701e-1 4.199439866686242e-1 5.760215968977271e-1 5.766124642324182e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000061145006725e-12 3.333333333330000e-1 1.333333333333000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410160e-1 2.827300962663335e-2 9.802573835432986e-2 1.445813957541102e-1 3.394813742946403e-1 3.717026803793968e-1 3.931233207291476e-1 4.953291963143355e-1 5.719303535379360e-1 6.011086850502549e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670001e-1 4.999999999990000e-1 1.166666666667000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687418e-2 -1.597699245488655e-2 8.234319764568760e-2 1.272352941934458e-1 3.576030128546805e-1 3.685253110437960e-1 4.616062994922641e-1 4.756146302550509e-1 5.154333185338791e-1 6.516564862152093e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333340001e-1 6.666666666659999e-1 1.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411238e-1 2.827300962671988e-2 9.802573835425418e-2 1.445813957543742e-1 3.394813742950647e-1 3.717026803798148e-1 3.931233207286218e-1 4.953291963139060e-1 5.719303535373564e-1 6.011086850501163e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000010001e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806946e-1 7.084507918603144e-2 1.571666544546130e-1 1.645213605063807e-1 3.067391714944155e-1 3.855790677693693e-1 4.021296839689500e-1 4.199439866681266e-1 5.760215968974789e-1 5.766124642322652e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 9.999999999989999e-1 6.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477291e-1 9.747155403146504e-2 1.407148038792649e-1 2.083323323648922e-1 3.487473951002830e-1 3.619912758789011e-1 3.773265446389420e-1 4.445947935326139e-1 4.635857218516425e-1 5.887785922112915e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 -8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806290e-1 1.443359024616770e-1 2.126955944941987e-1 2.126955944941989e-1 3.240345134878420e-1 3.489541386410080e-1 3.489541386410075e-1 4.407112633470957e-1 5.005812596575337e-1 5.005812596575369e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 -6.666666666659999e-1 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475263e-1 9.747155403103511e-2 1.407148038789279e-1 2.083323323647486e-1 3.487473951002426e-1 3.619912758791228e-1 3.773265446391942e-1 4.445947935326199e-1 4.635857218515994e-1 5.887785922120134e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666666000e0 -4.999999999999999e-1 4.999999999999999e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384633e-1 1.265217562275600e-2 1.184911614044583e-1 1.809098290213066e-1 3.274189270471035e-1 3.881608180008438e-1 3.883251928108070e-1 5.034535584271264e-1 5.086284098609247e-1 5.814401648479251e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333333000e0 -3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058495e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114710e-1 3.887602881088804e-1 4.035149582456926e-1 4.718402365099220e-1 5.814612522094700e-1 6.298180119205632e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.500000000000000e0 -1.666666666659999e-1 1.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806361e-1 7.084507918618359e-2 1.571666544543255e-1 1.645213605061905e-1 3.067391714940964e-1 3.855790677689177e-1 4.021296839693696e-1 4.199439866686243e-1 5.760215968977336e-1 5.766124642324187e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666666000e0 0.000000000000000e0 0.000000000000000e0</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043957e-1 1.593332332317128e-1 1.852306636237828e-1 1.852306636237826e-1 2.955497725323925e-1 3.916618184995514e-1 3.916618184995522e-1 3.963296367911913e-1 4.854702708491164e-1 5.467114915490130e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 -6.666666666659999e-1 1.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654475263e-1 9.747155403103530e-2 1.407148038789279e-1 2.083323323647486e-1 3.487473951002431e-1 3.619912758791228e-1 3.773265446391943e-1 4.445947935326204e-1 4.635857218515996e-1 5.887785922120102e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 -4.999999999989999e-1 8.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803892e-1 7.084507918560597e-2 1.571666544541247e-1 1.645213605061208e-1 3.067391714941708e-1 3.855790677691516e-1 4.021296839693056e-1 4.199439866686097e-1 5.760215968981116e-1 5.766124642330789e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-9.999999999989999e-1 -3.333333333329999e-1 6.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410160e-1 2.827300962663331e-2 9.802573835433012e-2 1.445813957541100e-1 3.394813742946405e-1 3.717026803793967e-1 3.931233207291471e-1 4.953291963143347e-1 5.719303535379354e-1 6.011086850502537e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666666000e0 -1.666666666659999e-1 5.000000000000000e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667455e-2 -1.597699245494552e-2 8.234319764552067e-2 1.272352941931750e-1 3.576030128548275e-1 3.685253110440141e-1 4.616062994918409e-1 4.756146302546769e-1 5.154333185346354e-1 6.516564862153350e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333333000e0 1.000088900582341e-12 3.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410158e-1 2.827300962663328e-2 9.802573835433011e-2 1.445813957541101e-1 3.394813742946404e-1 3.717026803793972e-1 3.931233207291470e-1 4.953291963143353e-1 5.719303535379354e-1 6.011086850502547e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.499999999999000e0 1.666666666670000e-1 1.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803892e-1 7.084507918560595e-2 1.571666544541247e-1 1.645213605061211e-1 3.067391714941708e-1 3.855790677691517e-1 4.021296839693049e-1 4.199439866686102e-1 5.760215968981139e-1 5.766124642330800e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-4.999999999999999e-1 -4.999999999999999e-1 1.166666666666000e0</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275600e-2 1.184911614044583e-1 1.809098290213067e-1 3.274189270471031e-1 3.881608180008437e-1 3.883251928108073e-1 5.034535584271264e-1 5.086284098609248e-1 5.814401648479260e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666669999e-1 -3.333333333330000e-1 9.999999999989999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410161e-1 2.827300962663330e-2 9.802573835432995e-2 1.445813957541102e-1 3.394813742946405e-1 3.717026803793972e-1 3.931233207291473e-1 4.953291963143355e-1 5.719303535379357e-1 6.011086850502544e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 -1.666666666669999e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743705e-2 -4.488564341277512e-3 9.546244072012788e-2 1.344554897053331e-1 2.748639439213653e-1 3.361649293578214e-1 5.098868583316452e-1 5.123436090956909e-1 6.285357602507977e-1 6.382455384747733e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 5.551115123125783e-17 6.666666666659999e-1</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616500e-2 -4.595646926856017e-2 9.480547115266052e-2 9.480550641328216e-2 3.367080102574077e-1 3.367082311067597e-1 4.857072024145045e-1 4.857072171348000e-1 6.298378724000350e-1 6.298383638281503e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666667000e0 1.666666666670001e-1 4.999999999989999e-1</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687398e-2 -1.597699245488659e-2 8.234319764568760e-2 1.272352941934459e-1 3.576030128546806e-1 3.685253110437956e-1 4.616062994922646e-1 4.756146302550515e-1 5.154333185338789e-1 6.516564862152029e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.333333333333000e0 3.333333333330000e-1 3.333333333330000e-1</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921066e-1 -9.504761102058481e-3 1.287742443349597e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088803e-1 4.035149582456922e-1 4.718402365099222e-1 5.814612522094713e-1 6.298180119205645e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 -3.333333333330000e-1 1.333333333333000e0</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921063e-1 -9.504761102058792e-3 1.287742443349595e-1 1.631920377966525e-1 3.111851826114711e-1 3.887602881088802e-1 4.035149582456922e-1 4.718402365099229e-1 5.814612522094715e-1 6.298180119205647e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 -1.666666666660000e-1 1.166666666666000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915667475e-2 -1.597699245494552e-2 8.234319764552067e-2 1.272352941931750e-1 3.576030128548275e-1 3.685253110440139e-1 4.616062994918420e-1 4.756146302546763e-1 5.154333185346358e-1 6.516564862153351e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 5.551115123125783e-17 1.000000000000000e0</k_point> - <npw>140</npw> - <eigenvalues size="10">-4.595704755616490e-2 -4.595646926856042e-2 9.480547115266202e-2 9.480550641328122e-2 3.367080102574078e-1 3.367082311067595e-1 4.857072024145054e-1 4.857072171348006e-1 6.298378724220177e-1 6.298383638061662e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 1.666666666670000e-1 8.333333333330000e-1</k_point> - <npw>139</npw> - <eigenvalues size="10">-9.019683486743721e-2 -4.488564341277506e-3 9.546244072012787e-2 1.344554897053331e-1 2.748639439213654e-1 3.361649293578219e-1 5.098868583316458e-1 5.123436090956897e-1 6.285357602507959e-1 6.382455384747974e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.000000000000000e0 3.333333333340001e-1 6.666666666659999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411239e-1 2.827300962671989e-2 9.802573835425424e-2 1.445813957543743e-1 3.394813742950650e-1 3.717026803798145e-1 3.931233207286221e-1 4.953291963139063e-1 5.719303535373546e-1 6.011086850501171e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.166666666666000e0 5.000000000000000e-1 5.000000000000000e-1</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275603e-2 1.184911614044583e-1 1.809098290213069e-1 3.274189270471031e-1 3.881608180008437e-1 3.883251928108067e-1 5.034535584271273e-1 5.086284098609248e-1 5.814401648479242e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666659999e-1 -1.666666666659999e-1 1.500000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806360e-1 7.084507918618355e-2 1.571666544543253e-1 1.645213605061906e-1 3.067391714940968e-1 3.855790677689175e-1 4.021296839693699e-1 4.199439866686243e-1 5.760215968977409e-1 5.766124642324034e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 1.000061145006725e-12 1.333333333333000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937410159e-1 2.827300962663328e-2 9.802573835432998e-2 1.445813957541101e-1 3.394813742946404e-1 3.717026803793964e-1 3.931233207291474e-1 4.953291963143352e-1 5.719303535379350e-1 6.011086850502545e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-4.999999999990000e-1 1.666666666670001e-1 1.166666666667000e0</k_point> - <npw>142</npw> - <eigenvalues size="10">-8.278520915687423e-2 -1.597699245488654e-2 8.234319764568749e-2 1.272352941934459e-1 3.576030128546805e-1 3.685253110437960e-1 4.616062994922647e-1 4.756146302550508e-1 5.154333185338775e-1 6.516564862152117e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666659999e-1 3.333333333340001e-1 1.000000000000000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.194959937411237e-1 2.827300962671985e-2 9.802573835425424e-2 1.445813957543742e-1 3.394813742950649e-1 3.717026803798144e-1 3.931233207286220e-1 4.953291963139055e-1 5.719303535373554e-1 6.011086850501172e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 5.000000000010001e-1 8.333333333330000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992806944e-1 7.084507918603144e-2 1.571666544546132e-1 1.645213605063807e-1 3.067391714944155e-1 3.855790677693687e-1 4.021296839689494e-1 4.199439866681264e-1 5.760215968974833e-1 5.766124642322605e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-9.999999999989999e-1 6.666666666670000e-1 6.666666666670000e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477291e-1 9.747155403146490e-2 1.407148038792649e-1 2.083323323648925e-1 3.487473951002831e-1 3.619912758789010e-1 3.773265446389420e-1 4.445947935326141e-1 4.635857218516425e-1 5.887785922112949e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">0.000000000000000e0 0.000000000000000e0 1.666666666666000e0</k_point> - <npw>149</npw> - <eigenvalues size="10">-1.869006397043958e-1 1.593332332317130e-1 1.852306636237827e-1 1.852306636237826e-1 2.955497725323918e-1 3.916618184995508e-1 3.916618184995511e-1 3.963296367911926e-1 4.854702708491181e-1 5.467114915490149e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-1.666666666670000e-1 1.666666666670000e-1 1.499999999999000e0</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.557434992803889e-1 7.084507918560584e-2 1.571666544541245e-1 1.645213605061211e-1 3.067391714941712e-1 3.855790677691515e-1 4.021296839693060e-1 4.199439866686097e-1 5.760215968981155e-1 5.766124642330739e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-3.333333333330000e-1 3.333333333330000e-1 1.333333333333000e0</k_point> - <npw>146</npw> - <eigenvalues size="10">-1.122761540921063e-1 -9.504761102058513e-3 1.287742443349596e-1 1.631920377966525e-1 3.111851826114708e-1 3.887602881088801e-1 4.035149582456926e-1 4.718402365099226e-1 5.814612522094724e-1 6.298180119205678e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-5.000000000000000e-1 5.000000000000000e-1 1.166666666666000e0</k_point> - <npw>145</npw> - <eigenvalues size="10">-1.262632444384634e-1 1.265217562275601e-2 1.184911614044582e-1 1.809098290213065e-1 3.274189270471034e-1 3.881608180008432e-1 3.883251928108067e-1 5.034535584271262e-1 5.086284098609241e-1 5.814401648479254e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-6.666666666670000e-1 6.666666666670000e-1 9.999999999989999e-1</k_point> - <npw>143</npw> - <eigenvalues size="10">-1.688773654477295e-1 9.747155403146490e-2 1.407148038792648e-1 2.083323323648925e-1 3.487473951002828e-1 3.619912758789010e-1 3.773265446389424e-1 4.445947935326134e-1 4.635857218516427e-1 5.887785922112919e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - <ks_energies> - <k_point weight="9.259259259259e-3">-8.333333333330000e-1 8.333333333330000e-1 8.333333333330000e-1</k_point> - <npw>150</npw> - <eigenvalues size="10">-1.917968083806290e-1 1.443359024616771e-1 2.126955944941987e-1 2.126955944941987e-1 3.240345134878424e-1 3.489541386410082e-1 3.489541386410076e-1 4.407112633470967e-1 5.005812596575368e-1 5.005812596575387e-1</eigenvalues> - <occupations size="10">1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 1.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0 0.000000000000000e0</occupations> - </ks_energies> - </band_structure> - </output> - <status>0</status> - <cputime>10</cputime> - <closed DATE="20 Jun 2018" TIME="12:27:10"></closed> -</qes:espresso> diff --git a/test-suite/epw_pl/benchmark.out.SVN.inp=epw1.in.args=3 b/test-suite/epw_pl/benchmark.out.git.inp=epw1.in.args=3 similarity index 100% rename from test-suite/epw_pl/benchmark.out.SVN.inp=epw1.in.args=3 rename to test-suite/epw_pl/benchmark.out.git.inp=epw1.in.args=3 diff --git a/test-suite/epw_pl/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_pl/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_pl/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_pl/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_pl/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_pl/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_pl/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_pl/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_pl/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_pl/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_pl/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_pl/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_pl/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_pl/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_pl/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_pl/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=epw1.in.args=3 b/test-suite/epw_polar/benchmark.out.git.inp=epw1.in.args=3 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=epw1.in.args=3 rename to test-suite/epw_polar/benchmark.out.git.inp=epw1.in.args=3 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_polar/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_polar/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=epw3.in.args=3 b/test-suite/epw_polar/benchmark.out.git.inp=epw3.in.args=3 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=epw3.in.args=3 rename to test-suite/epw_polar/benchmark.out.git.inp=epw3.in.args=3 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_polar/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_polar/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_polar/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_polar/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_polar/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_polar/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_polar/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_polar/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_polar/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_polar/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_soc/benchmark.out.SVN.inp=epw.in.args=3 b/test-suite/epw_soc/benchmark.out.git.inp=epw.in.args=3 similarity index 100% rename from test-suite/epw_soc/benchmark.out.SVN.inp=epw.in.args=3 rename to test-suite/epw_soc/benchmark.out.git.inp=epw.in.args=3 diff --git a/test-suite/epw_soc/benchmark.out.SVN.inp=epw2.in.args=3 b/test-suite/epw_soc/benchmark.out.git.inp=epw2.in.args=3 similarity index 100% rename from test-suite/epw_soc/benchmark.out.SVN.inp=epw2.in.args=3 rename to test-suite/epw_soc/benchmark.out.git.inp=epw2.in.args=3 diff --git a/test-suite/epw_soc/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_soc/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_soc/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_soc/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_soc/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_soc/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_soc/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_soc/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=epw_aniso.in.args=3 b/test-suite/epw_super/benchmark.out.git.inp=epw_aniso.in.args=3 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=epw_aniso.in.args=3 rename to test-suite/epw_super/benchmark.out.git.inp=epw_aniso.in.args=3 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=epw_iso.in.args=3 b/test-suite/epw_super/benchmark.out.git.inp=epw_iso.in.args=3 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=epw_iso.in.args=3 rename to test-suite/epw_super/benchmark.out.git.inp=epw_iso.in.args=3 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_super/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_super/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_super/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_super/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_super/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_super/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_super/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_super/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_super/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_super/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/epw_trev/benchmark.out.SVN.inp=epw.in.args=3 b/test-suite/epw_trev/benchmark.out.git.inp=epw.in.args=3 similarity index 100% rename from test-suite/epw_trev/benchmark.out.SVN.inp=epw.in.args=3 rename to test-suite/epw_trev/benchmark.out.git.inp=epw.in.args=3 diff --git a/test-suite/epw_trev/benchmark.out.SVN.inp=nscf_epw.in.args=1 b/test-suite/epw_trev/benchmark.out.git.inp=nscf_epw.in.args=1 similarity index 100% rename from test-suite/epw_trev/benchmark.out.SVN.inp=nscf_epw.in.args=1 rename to test-suite/epw_trev/benchmark.out.git.inp=nscf_epw.in.args=1 diff --git a/test-suite/epw_trev/benchmark.out.SVN.inp=ph.in.args=2 b/test-suite/epw_trev/benchmark.out.git.inp=ph.in.args=2 similarity index 100% rename from test-suite/epw_trev/benchmark.out.SVN.inp=ph.in.args=2 rename to test-suite/epw_trev/benchmark.out.git.inp=ph.in.args=2 diff --git a/test-suite/epw_trev/benchmark.out.SVN.inp=scf.in.args=1 b/test-suite/epw_trev/benchmark.out.git.inp=scf.in.args=1 similarity index 100% rename from test-suite/epw_trev/benchmark.out.SVN.inp=scf.in.args=1 rename to test-suite/epw_trev/benchmark.out.git.inp=scf.in.args=1 diff --git a/test-suite/epw_trev/benchmark.out.SVN.inp=scf_epw.in.args=1 b/test-suite/epw_trev/benchmark.out.git.inp=scf_epw.in.args=1 similarity index 100% rename from test-suite/epw_trev/benchmark.out.SVN.inp=scf_epw.in.args=1 rename to test-suite/epw_trev/benchmark.out.git.inp=scf_epw.in.args=1 diff --git a/test-suite/noexe_langevin/benchmark.out.SVN.inp=langevin.in b/test-suite/noexe_langevin/benchmark.out.git.inp=langevin.in similarity index 100% rename from test-suite/noexe_langevin/benchmark.out.SVN.inp=langevin.in rename to test-suite/noexe_langevin/benchmark.out.git.inp=langevin.in diff --git a/test-suite/noexe_langevin/benchmark.out.SVN.inp=langevin_smc.in b/test-suite/noexe_langevin/benchmark.out.git.inp=langevin_smc.in similarity index 100% rename from test-suite/noexe_langevin/benchmark.out.SVN.inp=langevin_smc.in rename to test-suite/noexe_langevin/benchmark.out.git.inp=langevin_smc.in diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=c.phG.in.args=2 b/test-suite/ph_base/benchmark.out.git.inp=c.phG.in.args=2 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=c.phG.in.args=2 rename to test-suite/ph_base/benchmark.out.git.inp=c.phG.in.args=2 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=c.scf.in.args=1 b/test-suite/ph_base/benchmark.out.git.inp=c.scf.in.args=1 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=c.scf.in.args=1 rename to test-suite/ph_base/benchmark.out.git.inp=c.scf.in.args=1 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=ni.phX.in.args=2 b/test-suite/ph_base/benchmark.out.git.inp=ni.phX.in.args=2 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=ni.phX.in.args=2 rename to test-suite/ph_base/benchmark.out.git.inp=ni.phX.in.args=2 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=ni.scf.in.args=1 b/test-suite/ph_base/benchmark.out.git.inp=ni.scf.in.args=1 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=ni.scf.in.args=1 rename to test-suite/ph_base/benchmark.out.git.inp=ni.scf.in.args=1 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=si.phG.in.args=2 b/test-suite/ph_base/benchmark.out.git.inp=si.phG.in.args=2 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=si.phG.in.args=2 rename to test-suite/ph_base/benchmark.out.git.inp=si.phG.in.args=2 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=si.phX.in.args=2 b/test-suite/ph_base/benchmark.out.git.inp=si.phX.in.args=2 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=si.phX.in.args=2 rename to test-suite/ph_base/benchmark.out.git.inp=si.phX.in.args=2 diff --git a/test-suite/ph_base/benchmark.out.SVN.inp=si.scf.in.args=1 b/test-suite/ph_base/benchmark.out.git.inp=si.scf.in.args=1 similarity index 100% rename from test-suite/ph_base/benchmark.out.SVN.inp=si.scf.in.args=1 rename to test-suite/ph_base/benchmark.out.git.inp=si.scf.in.args=1 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=al.elph.in.args=2 b/test-suite/ph_metal/benchmark.out.git.inp=al.elph.in.args=2 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=al.elph.in.args=2 rename to test-suite/ph_metal/benchmark.out.git.inp=al.elph.in.args=2 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=al.scf.fit.in.args=1 b/test-suite/ph_metal/benchmark.out.git.inp=al.scf.fit.in.args=1 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=al.scf.fit.in.args=1 rename to test-suite/ph_metal/benchmark.out.git.inp=al.scf.fit.in.args=1 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=al.scf.in.args=1 b/test-suite/ph_metal/benchmark.out.git.inp=al.scf.in.args=1 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=al.scf.in.args=1 rename to test-suite/ph_metal/benchmark.out.git.inp=al.scf.in.args=1 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=lambda.in.args=5 b/test-suite/ph_metal/benchmark.out.git.inp=lambda.in.args=5 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=lambda.in.args=5 rename to test-suite/ph_metal/benchmark.out.git.inp=lambda.in.args=5 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=matdyn.in.dos.args=4 b/test-suite/ph_metal/benchmark.out.git.inp=matdyn.in.dos.args=4 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=matdyn.in.dos.args=4 rename to test-suite/ph_metal/benchmark.out.git.inp=matdyn.in.dos.args=4 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=matdyn.in.freq.args=4 b/test-suite/ph_metal/benchmark.out.git.inp=matdyn.in.freq.args=4 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=matdyn.in.freq.args=4 rename to test-suite/ph_metal/benchmark.out.git.inp=matdyn.in.freq.args=4 diff --git a/test-suite/ph_metal/benchmark.out.SVN.inp=q2r.in.args=3 b/test-suite/ph_metal/benchmark.out.git.inp=q2r.in.args=3 similarity index 100% rename from test-suite/ph_metal/benchmark.out.SVN.inp=q2r.in.args=3 rename to test-suite/ph_metal/benchmark.out.git.inp=q2r.in.args=3 diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom-lsda.in b/test-suite/pw_atom/benchmark.out.git.inp=atom-lsda.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom-lsda.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom-lsda.in diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom-occ1.in b/test-suite/pw_atom/benchmark.out.git.inp=atom-occ1.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom-occ1.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom-occ1.in diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom-occ2.in b/test-suite/pw_atom/benchmark.out.git.inp=atom-occ2.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom-occ2.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom-occ2.in diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom-pbe.in b/test-suite/pw_atom/benchmark.out.git.inp=atom-pbe.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom-pbe.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom-pbe.in diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom-sigmapbe.in b/test-suite/pw_atom/benchmark.out.git.inp=atom-sigmapbe.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom-sigmapbe.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom-sigmapbe.in diff --git a/test-suite/pw_atom/benchmark.out.SVN.inp=atom.in b/test-suite/pw_atom/benchmark.out.git.inp=atom.in similarity index 100% rename from test-suite/pw_atom/benchmark.out.SVN.inp=atom.in rename to test-suite/pw_atom/benchmark.out.git.inp=atom.in diff --git a/test-suite/pw_b3lyp/benchmark.out.SVN.inp=b3lyp-O.in b/test-suite/pw_b3lyp/benchmark.out.git.inp=b3lyp-O.in similarity index 100% rename from test-suite/pw_b3lyp/benchmark.out.SVN.inp=b3lyp-O.in rename to test-suite/pw_b3lyp/benchmark.out.git.inp=b3lyp-O.in diff --git a/test-suite/pw_b3lyp/benchmark.out.SVN.inp=b3lyp-h2o.in b/test-suite/pw_b3lyp/benchmark.out.git.inp=b3lyp-h2o.in similarity index 100% rename from test-suite/pw_b3lyp/benchmark.out.SVN.inp=b3lyp-h2o.in rename to test-suite/pw_b3lyp/benchmark.out.git.inp=b3lyp-h2o.in diff --git a/test-suite/pw_b3lyp/benchmark.out.SVN.inp=x3lyp-O.in b/test-suite/pw_b3lyp/benchmark.out.git.inp=x3lyp-O.in similarity index 100% rename from test-suite/pw_b3lyp/benchmark.out.SVN.inp=x3lyp-O.in rename to test-suite/pw_b3lyp/benchmark.out.git.inp=x3lyp-O.in diff --git a/test-suite/pw_b3lyp/benchmark.out.SVN.inp=x3lyp-h2o.in b/test-suite/pw_b3lyp/benchmark.out.git.inp=x3lyp-h2o.in similarity index 100% rename from test-suite/pw_b3lyp/benchmark.out.SVN.inp=x3lyp-h2o.in rename to test-suite/pw_b3lyp/benchmark.out.git.inp=x3lyp-h2o.in diff --git a/test-suite/pw_berry/benchmark.out.SVN.inp=berry-1.in b/test-suite/pw_berry/benchmark.out.git.inp=berry-1.in similarity index 100% rename from test-suite/pw_berry/benchmark.out.SVN.inp=berry-1.in rename to test-suite/pw_berry/benchmark.out.git.inp=berry-1.in diff --git a/test-suite/pw_berry/benchmark.out.SVN.inp=berry-2.in b/test-suite/pw_berry/benchmark.out.git.inp=berry-2.in similarity index 100% rename from test-suite/pw_berry/benchmark.out.SVN.inp=berry-2.in rename to test-suite/pw_berry/benchmark.out.git.inp=berry-2.in diff --git a/test-suite/pw_berry/benchmark.out.SVN.inp=berry.in b/test-suite/pw_berry/benchmark.out.git.inp=berry.in similarity index 100% rename from test-suite/pw_berry/benchmark.out.SVN.inp=berry.in rename to test-suite/pw_berry/benchmark.out.git.inp=berry.in diff --git a/test-suite/pw_cluster/benchmark.out.SVN.inp=cluster1.in b/test-suite/pw_cluster/benchmark.out.git.inp=cluster1.in similarity index 100% rename from test-suite/pw_cluster/benchmark.out.SVN.inp=cluster1.in rename to test-suite/pw_cluster/benchmark.out.git.inp=cluster1.in diff --git a/test-suite/pw_cluster/benchmark.out.SVN.inp=cluster2.in b/test-suite/pw_cluster/benchmark.out.git.inp=cluster2.in similarity index 100% rename from test-suite/pw_cluster/benchmark.out.SVN.inp=cluster2.in rename to test-suite/pw_cluster/benchmark.out.git.inp=cluster2.in diff --git a/test-suite/pw_cluster/benchmark.out.SVN.inp=cluster3.in b/test-suite/pw_cluster/benchmark.out.git.inp=cluster3.in similarity index 100% rename from test-suite/pw_cluster/benchmark.out.SVN.inp=cluster3.in rename to test-suite/pw_cluster/benchmark.out.git.inp=cluster3.in diff --git a/test-suite/pw_cluster/benchmark.out.SVN.inp=cluster4.in b/test-suite/pw_cluster/benchmark.out.git.inp=cluster4.in similarity index 100% rename from test-suite/pw_cluster/benchmark.out.SVN.inp=cluster4.in rename to test-suite/pw_cluster/benchmark.out.git.inp=cluster4.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft1.in b/test-suite/pw_dft/benchmark.out.git.inp=dft1.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft1.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft1.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft10.in b/test-suite/pw_dft/benchmark.out.git.inp=dft10.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft10.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft10.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft11.in b/test-suite/pw_dft/benchmark.out.git.inp=dft11.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft11.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft11.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft2.in b/test-suite/pw_dft/benchmark.out.git.inp=dft2.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft2.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft2.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft3.in b/test-suite/pw_dft/benchmark.out.git.inp=dft3.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft3.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft3.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft4.in b/test-suite/pw_dft/benchmark.out.git.inp=dft4.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft4.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft4.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft5.in b/test-suite/pw_dft/benchmark.out.git.inp=dft5.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft5.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft5.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft6.in b/test-suite/pw_dft/benchmark.out.git.inp=dft6.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft6.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft6.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft7.in b/test-suite/pw_dft/benchmark.out.git.inp=dft7.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft7.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft7.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft8.in b/test-suite/pw_dft/benchmark.out.git.inp=dft8.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft8.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft8.in diff --git a/test-suite/pw_dft/benchmark.out.SVN.inp=dft9.in b/test-suite/pw_dft/benchmark.out.git.inp=dft9.in similarity index 100% rename from test-suite/pw_dft/benchmark.out.SVN.inp=dft9.in rename to test-suite/pw_dft/benchmark.out.git.inp=dft9.in diff --git a/test-suite/pw_dipole/benchmark.out.SVN.inp=dipole.in b/test-suite/pw_dipole/benchmark.out.git.inp=dipole.in similarity index 100% rename from test-suite/pw_dipole/benchmark.out.SVN.inp=dipole.in rename to test-suite/pw_dipole/benchmark.out.git.inp=dipole.in diff --git a/test-suite/pw_electric/benchmark.out.SVN.inp=electric0.in b/test-suite/pw_electric/benchmark.out.git.inp=electric0.in similarity index 100% rename from test-suite/pw_electric/benchmark.out.SVN.inp=electric0.in rename to test-suite/pw_electric/benchmark.out.git.inp=electric0.in diff --git a/test-suite/pw_electric/benchmark.out.SVN.inp=electric1.in b/test-suite/pw_electric/benchmark.out.git.inp=electric1.in similarity index 100% rename from test-suite/pw_electric/benchmark.out.SVN.inp=electric1.in rename to test-suite/pw_electric/benchmark.out.git.inp=electric1.in diff --git a/test-suite/pw_electric/benchmark.out.SVN.inp=electric2.in b/test-suite/pw_electric/benchmark.out.git.inp=electric2.in similarity index 100% rename from test-suite/pw_electric/benchmark.out.SVN.inp=electric2.in rename to test-suite/pw_electric/benchmark.out.git.inp=electric2.in diff --git a/test-suite/pw_eval/benchmark.out.SVN.inp=eval_infix-2.in b/test-suite/pw_eval/benchmark.out.git.inp=eval_infix-2.in similarity index 100% rename from test-suite/pw_eval/benchmark.out.SVN.inp=eval_infix-2.in rename to test-suite/pw_eval/benchmark.out.git.inp=eval_infix-2.in diff --git a/test-suite/pw_eval/benchmark.out.SVN.inp=eval_infix.in b/test-suite/pw_eval/benchmark.out.git.inp=eval_infix.in similarity index 100% rename from test-suite/pw_eval/benchmark.out.SVN.inp=eval_infix.in rename to test-suite/pw_eval/benchmark.out.git.inp=eval_infix.in diff --git a/test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si111.in b/test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si111.in similarity index 100% rename from test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si111.in rename to test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si111.in diff --git a/test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si222.in b/test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si222.in similarity index 100% rename from test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si222.in rename to test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si222.in diff --git a/test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si444.in b/test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si444.in similarity index 100% rename from test-suite/pw_gau-pbe/benchmark.out.SVN.inp=gau-pbe-si444.in rename to test-suite/pw_gau-pbe/benchmark.out.git.inp=gau-pbe-si444.in diff --git a/test-suite/pw_hse/benchmark.out.SVN.inp=hse-si111.in b/test-suite/pw_hse/benchmark.out.git.inp=hse-si111.in similarity index 100% rename from test-suite/pw_hse/benchmark.out.SVN.inp=hse-si111.in rename to test-suite/pw_hse/benchmark.out.git.inp=hse-si111.in diff --git a/test-suite/pw_hse/benchmark.out.SVN.inp=hse-si222.in b/test-suite/pw_hse/benchmark.out.git.inp=hse-si222.in similarity index 100% rename from test-suite/pw_hse/benchmark.out.SVN.inp=hse-si222.in rename to test-suite/pw_hse/benchmark.out.git.inp=hse-si222.in diff --git a/test-suite/pw_hse/benchmark.out.SVN.inp=hse-si444.in b/test-suite/pw_hse/benchmark.out.git.inp=hse-si444.in similarity index 100% rename from test-suite/pw_hse/benchmark.out.SVN.inp=hse-si444.in rename to test-suite/pw_hse/benchmark.out.git.inp=hse-si444.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-12-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-12-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-12-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-12-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-12.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-12.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-12.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-12.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-3-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-3-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-3-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-3-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-3.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-3.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-3.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-3.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-5-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-5-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-5-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-5-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-5.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-5.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav-5.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav-5.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters+a.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters+a.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters+a.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters+a.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters+celldm.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters+celldm.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters+celldm.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters+celldm.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters-ang.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters-ang.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters-ang.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters-ang.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav0-cell_parameters.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav0-cell_parameters.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav1-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav1-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav1-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav1-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav1.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav1.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav1.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav1.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav10-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav10-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav10-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav10-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav10.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav10.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav10.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav10.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav11-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav11-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav11-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav11-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav11.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav11.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav11.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav11.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav12-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav12-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav12-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav12-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav12.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav12.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav12.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav12.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav13-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav13-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav13-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav13-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav13.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav13.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav13.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav13.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav14-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav14-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav14-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav14-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav14.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav14.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav14.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav14.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav2-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav2-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav2-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav2-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav2.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav2.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav2.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav2.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav3-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav3-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav3-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav3-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav3.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav3.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav3.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav3.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav4-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav4-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav4-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav4-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav4.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav4.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav4.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav4.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav5-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav5-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav5-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav5-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav5.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav5.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav5.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav5.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav6-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav6-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav6-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav6-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav6.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav6.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav6.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav6.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav7-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav7-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav7-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav7-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav7.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav7.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav7.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav7.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav8-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav8-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav8-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav8-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav8.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav8.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav8.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav8.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav9-kauto.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav9-kauto.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav9-kauto.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav9-kauto.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav9.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav9.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-ibrav9.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-ibrav9.in diff --git a/test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-wyckoff-sio2.in b/test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-wyckoff-sio2.in similarity index 100% rename from test-suite/pw_lattice-ibrav/benchmark.out.SVN.inp=lattice-wyckoff-sio2.in rename to test-suite/pw_lattice-ibrav/benchmark.out.git.inp=lattice-wyckoff-sio2.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U-noU.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U-noU.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U-noU.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U-noU.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U-user_ns.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U-user_ns.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U-user_ns.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U-user_ns.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_force.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_force.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_force.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_force.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_gamma.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_gamma.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_gamma.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_gamma.in diff --git a/test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_pseudo.in b/test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_pseudo.in similarity index 100% rename from test-suite/pw_lda+U/benchmark.out.SVN.inp=lda+U_pseudo.in rename to test-suite/pw_lda+U/benchmark.out.git.inp=lda+U_pseudo.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-2.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-2.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-2.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-2.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-cg.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-cg.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-cg.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-cg.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_TF.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_TF.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_TF.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_TF.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_localTF.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_localTF.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_localTF.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_localTF.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_ndim.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_ndim.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-mixing_ndim.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-mixing_ndim.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-nelup+neldw.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-nelup+neldw.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-nelup+neldw.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-nelup+neldw.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-tot_magnetization.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda-tot_magnetization.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda-tot_magnetization.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda-tot_magnetization.in diff --git a/test-suite/pw_lsda/benchmark.out.SVN.inp=lsda.in b/test-suite/pw_lsda/benchmark.out.git.inp=lsda.in similarity index 100% rename from test-suite/pw_lsda/benchmark.out.SVN.inp=lsda.in rename to test-suite/pw_lsda/benchmark.out.git.inp=lsda.in diff --git a/test-suite/pw_md/benchmark.out.SVN.inp=md-pot_extrap1.in b/test-suite/pw_md/benchmark.out.git.inp=md-pot_extrap1.in similarity index 100% rename from test-suite/pw_md/benchmark.out.SVN.inp=md-pot_extrap1.in rename to test-suite/pw_md/benchmark.out.git.inp=md-pot_extrap1.in diff --git a/test-suite/pw_md/benchmark.out.SVN.inp=md-pot_extrap2.in b/test-suite/pw_md/benchmark.out.git.inp=md-pot_extrap2.in similarity index 100% rename from test-suite/pw_md/benchmark.out.SVN.inp=md-pot_extrap2.in rename to test-suite/pw_md/benchmark.out.git.inp=md-pot_extrap2.in diff --git a/test-suite/pw_md/benchmark.out.SVN.inp=md-wfc_extrap1.in b/test-suite/pw_md/benchmark.out.git.inp=md-wfc_extrap1.in similarity index 100% rename from test-suite/pw_md/benchmark.out.SVN.inp=md-wfc_extrap1.in rename to test-suite/pw_md/benchmark.out.git.inp=md-wfc_extrap1.in diff --git a/test-suite/pw_md/benchmark.out.SVN.inp=md-wfc_extrap2.in b/test-suite/pw_md/benchmark.out.git.inp=md-wfc_extrap2.in similarity index 100% rename from test-suite/pw_md/benchmark.out.SVN.inp=md-wfc_extrap2.in rename to test-suite/pw_md/benchmark.out.git.inp=md-wfc_extrap2.in diff --git a/test-suite/pw_md/benchmark.out.SVN.inp=md.in b/test-suite/pw_md/benchmark.out.git.inp=md.in similarity index 100% rename from test-suite/pw_md/benchmark.out.SVN.inp=md.in rename to test-suite/pw_md/benchmark.out.git.inp=md.in diff --git a/test-suite/pw_metaGGA/benchmark.out.SVN.inp=metaGGA.in b/test-suite/pw_metaGGA/benchmark.out.git.inp=metaGGA.in similarity index 100% rename from test-suite/pw_metaGGA/benchmark.out.SVN.inp=metaGGA.in rename to test-suite/pw_metaGGA/benchmark.out.git.inp=metaGGA.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal-2.in b/test-suite/pw_metal/benchmark.out.git.inp=metal-2.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal-2.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal-2.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal-fermi_dirac.in b/test-suite/pw_metal/benchmark.out.git.inp=metal-fermi_dirac.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal-fermi_dirac.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal-fermi_dirac.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal-gaussian.in b/test-suite/pw_metal/benchmark.out.git.inp=metal-gaussian.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal-gaussian.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal-gaussian.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal-tetrahedra-2.in b/test-suite/pw_metal/benchmark.out.git.inp=metal-tetrahedra-2.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal-tetrahedra-2.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal-tetrahedra-2.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal-tetrahedra.in b/test-suite/pw_metal/benchmark.out.git.inp=metal-tetrahedra.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal-tetrahedra.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal-tetrahedra.in diff --git a/test-suite/pw_metal/benchmark.out.SVN.inp=metal.in b/test-suite/pw_metal/benchmark.out.git.inp=metal.in similarity index 100% rename from test-suite/pw_metal/benchmark.out.SVN.inp=metal.in rename to test-suite/pw_metal/benchmark.out.git.inp=metal.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-1.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-1.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-1.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-1.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-2.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-2.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-2.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-2.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-cg.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-cg.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-cg.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-cg.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_angle.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_angle.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_angle.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_angle.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_atomic.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_atomic.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_atomic.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_atomic.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_total.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_total.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-constrain_total.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-constrain_total.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-hyb.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-hyb.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin-hyb.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin-hyb.in diff --git a/test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin.in b/test-suite/pw_noncolin/benchmark.out.git.inp=noncolin.in similarity index 100% rename from test-suite/pw_noncolin/benchmark.out.SVN.inp=noncolin.in rename to test-suite/pw_noncolin/benchmark.out.git.inp=noncolin.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_l=2.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_l=2.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_l=2.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_l=2.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_lda.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_lda.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_lda.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_lda.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_spin.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_spin.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_spin.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_spin.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_spin_lda.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_spin_lda.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_spin_lda.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_spin_lda.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_tqr.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_tqr.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-atom_tqr.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-atom_tqr.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-bfgs.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-bfgs.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-bfgs.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-bfgs.in diff --git a/test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-vcbfgs.in b/test-suite/pw_pawatom/benchmark.out.git.inp=paw-vcbfgs.in similarity index 100% rename from test-suite/pw_pawatom/benchmark.out.SVN.inp=paw-vcbfgs.in rename to test-suite/pw_pawatom/benchmark.out.git.inp=paw-vcbfgs.in diff --git a/test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si111.in b/test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si111.in similarity index 100% rename from test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si111.in rename to test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si111.in diff --git a/test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si222.in b/test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si222.in similarity index 100% rename from test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si222.in rename to test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si222.in diff --git a/test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si444.in b/test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si444.in similarity index 100% rename from test-suite/pw_pbe/benchmark.out.SVN.inp=pbe0-si444.in rename to test-suite/pw_pbe/benchmark.out.git.inp=pbe0-si444.in diff --git a/test-suite/pw_pbe/benchmark.out.SVN.inp=pbeq2d.in b/test-suite/pw_pbe/benchmark.out.git.inp=pbeq2d.in similarity index 100% rename from test-suite/pw_pbe/benchmark.out.SVN.inp=pbeq2d.in rename to test-suite/pw_pbe/benchmark.out.git.inp=pbeq2d.in diff --git a/test-suite/pw_plugins/benchmark.out.SVN.inp=plugin-pw2casino_1.in b/test-suite/pw_plugins/benchmark.out.git.inp=plugin-pw2casino_1.in similarity index 100% rename from test-suite/pw_plugins/benchmark.out.SVN.inp=plugin-pw2casino_1.in rename to test-suite/pw_plugins/benchmark.out.git.inp=plugin-pw2casino_1.in diff --git a/test-suite/pw_plugins/benchmark.out.SVN.inp=plugin-pw2casino_2.in b/test-suite/pw_plugins/benchmark.out.git.inp=plugin-pw2casino_2.in similarity index 100% rename from test-suite/pw_plugins/benchmark.out.SVN.inp=plugin-pw2casino_2.in rename to test-suite/pw_plugins/benchmark.out.git.inp=plugin-pw2casino_2.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax-damped.in b/test-suite/pw_relax/benchmark.out.git.inp=relax-damped.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax-damped.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax-damped.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax-el.in b/test-suite/pw_relax/benchmark.out.git.inp=relax-el.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax-el.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax-el.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax-extfor.in b/test-suite/pw_relax/benchmark.out.git.inp=relax-extfor.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax-extfor.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax-extfor.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax.in b/test-suite/pw_relax/benchmark.out.git.inp=relax.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax2-bfgs_ndim3.in b/test-suite/pw_relax/benchmark.out.git.inp=relax2-bfgs_ndim3.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax2-bfgs_ndim3.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax2-bfgs_ndim3.in diff --git a/test-suite/pw_relax/benchmark.out.SVN.inp=relax2.in b/test-suite/pw_relax/benchmark.out.git.inp=relax2.in similarity index 100% rename from test-suite/pw_relax/benchmark.out.SVN.inp=relax2.in rename to test-suite/pw_relax/benchmark.out.git.inp=relax2.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-1.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-1.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-1.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-1.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-2.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-2.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-2.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-2.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-allfrac.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-allfrac.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-allfrac.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-allfrac.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-cg.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-cg.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-cg.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-cg.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io-1.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io-1.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io-1.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io-1.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io-2.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io-2.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io-2.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io-2.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-disk_io.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-disk_io.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-gamma.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-gamma.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-gamma.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-gamma.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-k0.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-k0.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-k0.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-k0.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-kauto.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-kauto.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-kauto.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-kauto.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-kcrys.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-kcrys.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-kcrys.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-kcrys.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_TF.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_TF.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_TF.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_TF.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_beta.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_beta.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_beta.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_beta.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_localTF.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_localTF.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_localTF.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_localTF.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_ndim.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_ndim.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-mixing_ndim.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-mixing_ndim.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-ncpp.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-ncpp.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-ncpp.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-ncpp.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-nofrac.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-nofrac.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-nofrac.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-nofrac.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-occ.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-occ.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-occ.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-occ.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf-wf_collect.in b/test-suite/pw_scf/benchmark.out.git.inp=scf-wf_collect.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf-wf_collect.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf-wf_collect.in diff --git a/test-suite/pw_scf/benchmark.out.SVN.inp=scf.in b/test-suite/pw_scf/benchmark.out.git.inp=scf.in similarity index 100% rename from test-suite/pw_scf/benchmark.out.SVN.inp=scf.in rename to test-suite/pw_scf/benchmark.out.git.inp=scf.in diff --git a/test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit-1.in b/test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit-1.in similarity index 100% rename from test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit-1.in rename to test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit-1.in diff --git a/test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit-3.in b/test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit-3.in similarity index 100% rename from test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit-3.in rename to test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit-3.in diff --git a/test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit.in b/test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit.in similarity index 100% rename from test-suite/pw_spinorbit/benchmark.out.SVN.inp=spinorbit.in rename to test-suite/pw_spinorbit/benchmark.out.git.inp=spinorbit.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-2.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-2.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-2.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-2.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-cg.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-cg.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-cg.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-cg.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-hyb-g.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-hyb-g.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-hyb-g.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-hyb-g.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-hyb-k.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-hyb-k.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-hyb-k.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-hyb-k.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_TF.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_TF.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_TF.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_TF.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_localTF.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_localTF.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_localTF.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_localTF.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_ndim.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_ndim.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-mixing_ndim.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-mixing_ndim.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-singlegrid.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp-singlegrid.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp-singlegrid.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp-singlegrid.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp1-coulomb.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp1-coulomb.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp1-coulomb.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp1-coulomb.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp1.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp1.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp1.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp1.in diff --git a/test-suite/pw_uspp/benchmark.out.SVN.inp=uspp2.in b/test-suite/pw_uspp/benchmark.out.git.inp=uspp2.in similarity index 100% rename from test-suite/pw_uspp/benchmark.out.SVN.inp=uspp2.in rename to test-suite/pw_uspp/benchmark.out.git.inp=uspp2.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-md1.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-md1.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-md1.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-md1.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-md2.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-md2.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-md2.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-md2.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax1.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax1.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax1.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax1.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax2.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax2.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax2.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax2.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax3.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax3.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax3.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax3.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax4.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax4.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax4.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax4.in diff --git a/test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax5.in b/test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax5.in similarity index 100% rename from test-suite/pw_vc-relax/benchmark.out.SVN.inp=vc-relax5.in rename to test-suite/pw_vc-relax/benchmark.out.git.inp=vc-relax5.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-d2.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw-d2.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-d2.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw-d2.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-d3.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw-d3.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-d3.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw-d3.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-ts.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw-ts.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw-ts.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw-ts.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw1.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw1.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw1.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw1.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw2.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw2.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw2.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw2.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw3.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw3.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw3.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw3.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw4.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw4.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw4.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw4.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw5.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw5.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw5.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw5.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=vdw6.in b/test-suite/pw_vdw/benchmark.out.git.inp=vdw6.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=vdw6.in rename to test-suite/pw_vdw/benchmark.out.git.inp=vdw6.in diff --git a/test-suite/pw_vdw/benchmark.out.SVN.inp=xdm.in b/test-suite/pw_vdw/benchmark.out.git.inp=xdm.in similarity index 100% rename from test-suite/pw_vdw/benchmark.out.SVN.inp=xdm.in rename to test-suite/pw_vdw/benchmark.out.git.inp=xdm.in diff --git a/test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.pw-in.args=1 b/test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.pw-in.args=1 similarity index 100% rename from test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.pw-in.args=1 rename to test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.pw-in.args=1 diff --git a/test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.tddfpt-in.args=2 b/test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.tddfpt-in.args=2 similarity index 100% rename from test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.tddfpt-in.args=2 rename to test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.tddfpt-in.args=2 diff --git a/test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.tddfpt_pp-in.args=3 b/test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.tddfpt_pp-in.args=3 similarity index 100% rename from test-suite/tddfpt_CH4/benchmark.out.SVN.inp=CH4.tddfpt_pp-in.args=3 rename to test-suite/tddfpt_CH4/benchmark.out.git.inp=CH4.tddfpt_pp-in.args=3 diff --git a/test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.pw-in.args=1 b/test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.pw-in.args=1 similarity index 100% rename from test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.pw-in.args=1 rename to test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.pw-in.args=1 diff --git a/test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.tddfpt-eels-in.args=5 b/test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.tddfpt-eels-in.args=5 similarity index 100% rename from test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.tddfpt-eels-in.args=5 rename to test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.tddfpt-eels-in.args=5 diff --git a/test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.tddfpt_pp_eels-in.args=4 b/test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.tddfpt_pp_eels-in.args=4 similarity index 100% rename from test-suite/tddfpt_eels-si/benchmark.out.SVN.inp=Si.tddfpt_pp_eels-in.args=4 rename to test-suite/tddfpt_eels-si/benchmark.out.git.inp=Si.tddfpt_pp_eels-in.args=4 diff --git a/test-suite/userconfig.tmp b/test-suite/userconfig.tmp index 5b5e07800ad6a789d453e341548ce93d3f95e0e9..2206b0db1ee04b528f79256821f2f95611a265bf 100644 --- a/test-suite/userconfig.tmp +++ b/test-suite/userconfig.tmp @@ -119,7 +119,7 @@ skip_program = grep skip_args = 'not present in this version' [user] -benchmark = SVN +benchmark = git date_fmt = %d%m%y diff = vimdiff