<div>Dear board members,</div><div><br></div><div>I am running a VIBRATIONAL_ANALYSIS job on a Linux cluster and would like to restart an unfinished calculation. CP2K runs SCF calculations for all displaced geometries in parallel and creates also corresponding restart files. How do I need to modify the input file that CP2K reads those restart files and simply continues unfinished SCF tasks? I attach my input file.</div><div>Thanks for your help!</div><div><br></div><div>- Thomas Niehaus<br></div><div><br></div><div> &GLOBAL<br>  ! the project name is made part of most output files... useful to keep order <br>  PROJECT CRY<br>  ! various runtypes (energy, geo_opt, etc.) available.<br>  RUN_TYPE VIBRATIONAL_ANALYSIS <br>  ! limit the runs to 30min<br>  WALLTIME 180000<br>  ! reduce the amount of IO<br>  IOLEVEL  MEDIUM <br>&END GLOBAL<br><br>&FORCE_EVAL<br>  ! the electronic structure part of CP2K is named Quickstep<br>  METHOD Quickstep<br>  &DFT<br>    ! basis sets and pseudopotential files can be found in cp2k/data<br>    BASIS_SET_FILE_NAME BASIS_MOLOPT <br>    POTENTIAL_FILE_NAME GTH_POTENTIALS            <br>    ! GGA restart to provide a good initial density matrix<br>    !!WFN_RESTART_FILE_NAME CRY-RESTART-GGA.wfn <br><br>    ! Charge and multiplicity<br>    CHARGE 0<br>    MULTIPLICITY 1<br><br>    &MGRID<br>      NGRIDS 5<br>      CUTOFF 1400<br>      REL_CUTOFF 80<br>    &END MGRID<br><br>    &QS<br>       ! use the GPW method (i.e. pseudopotential based calculations with the Gaussian and Plane Waves scheme).<br>       METHOD GPW <br>       ! default threshold for numerics ~ roughly numerical accuracy of the total energy per electron,<br>       ! sets reasonable values for all other thresholds.<br>       EPS_DEFAULT 5.0E-10 <br>       ! used for MD, the method used to generate the initial guess.<br>       EXTRAPOLATION ASPC <br>    &END<br><br>    &POISSON<br>       PERIODIC XYZ ! the default, gas phase systems should have 'NONE' and a wavelet solver<br>    &END<br><br>    ! use the OT METHOD for robust and efficient SCF, suitable for all non-metallic systems.<br>    &SCF                              <br>      SCF_GUESS RESTART ! can be used to RESTART an interrupted calculation<br>      MAX_SCF 200 <br>      EPS_SCF 5.0E-10 ! accuracy of the SCF procedure typically 1.0E-6 - 1.0E-7<br>      &OT<br>        ! an accurate preconditioner suitable also for larger systems<br>        PRECONDITIONER FULL_SINGLE_INVERSE<br>        ! the most robust choice (DIIS might sometimes be faster, but not as stable).<br>        MINIMIZER DIIS<br>      &END OT<br>      ! do not store the wfn during MD<br>      &PRINT<br>        &RESTART ON<br>        &END<br>      &END<br>    &END SCF<br><br>    ! specify the exchange and correlation treatment<br>    &XC<br>      ! use a PBE functional <br>      &XC_FUNCTIONAL <br>        &PBE<br>         ! 100% GGA exchange<br>         SCALE_X 1.0<br>         ! 100% GGA correlation<br>         SCALE_C 1.0<br>        &END PBE<br>      &END XC_FUNCTIONAL<br>    &END XC<br>    &PRINT<br>      &MOMENTS<br>        PERIODIC<br>      &END<br>    &END<br>  &END DFT<br> <br>  ! description of the system<br>  &SUBSYS<br>    &CELL<br>      ABC 12.889 6.852 6.784<br>      ALPHA_BETA_GAMMA 90.0 104.92 90.0<br>    &END CELL<br><br>    ! atom coordinates can be in the &COORD section,<br>    ! or provided as an external file.<br>    &TOPOLOGY<br>      COORD_FILE_NAME opt.xyz<br>      COORD_FILE_FORMAT XYZ<br>    &END<br><br>    ! MOLOPT basis sets are fairly costly,<br>    ! but in the 'DZVP-MOLOPT-SR-GTH' available for all elements<br>    ! their contracted nature makes them suitable<br>    ! for condensed and gas phase systems alike.<br>    &KIND H                              <br>      BASIS_SET DZVP-MOLOPT-GTH<br>      POTENTIAL GTH-PBE-q1             <br>    &END KIND<br>    &KIND O<br>      BASIS_SET DZVP-MOLOPT-GTH<br>      POTENTIAL GTH-PBE-q6<br>    &END KIND<br>    &KIND N    <br>      BASIS_SET DZVP-MOLOPT-GTH<br>      POTENTIAL GTH-PBE-q5<br>    &END KIND<br>    &KIND C        <br>      BASIS_SET DZVP-MOLOPT-GTH<br>      POTENTIAL GTH-PBE-q4<br>    &END KIND   <br>  &END SUBSYS<br>&END FORCE_EVAL<br><br>&VIBRATIONAL_ANALYSIS<br> INTENSITIES<br> DX 0.001<br> FULLY_PERIODIC<br>   &PRINT<br>     &PROGRAM_RUN_INFO ON<br>     &END<br>   &END<br>&END<br><br></div>