<div dir="ltr">Hi All,<br><br>I am trying to run an AIMD simulations for an interface. I got "CPASSERT failed"  error while running the simulation.<br><br>Attached in the input file for the simulations.<br><br>&GLOBAL<br>  ! the project name is made part of most output files... useful to keep order <br>  PROJECT GLASS<br>  ! various runtypes (energy, geo_opt, etc.) available.<br>  RUN_TYPE MD<br>  PRINT_LEVEL MEDIUM            <br>&END GLOBAL<br><br>&FORCE_EVAL<br>  ! the electronic structure part of CP2K is named Quickstep<br>  &PRINT ! To print forces<br>    &FORCES<br>    &END<br>  &END<br>  STRESS_TENSOR ANALYTICAL<br>  METHOD QUICKSTEP<br>  &DFT<br>    ! basis sets and pseudopotential files can be found in cp2k/data<br>    BASIS_SET_FILE_NAME /home/adive/Software/CP2K/cp2k-4.1/data/BASIS_MOLOPT<br>    POTENTIAL_FILE_NAME /home/adive/Software/CP2K/cp2k-4.1/data/GTH_POTENTIALS         <br><br>    ! Charge and multiplicity<br>    CHARGE 0<br>    MULTIPLICITY 1<br><br>    &MGRID<br>       ! PW cutoff ... depends on the element (basis) too small cutoffs lead to the eggbox effect.<br>       ! certain calculations (e.g. geometry optimization, vibrational frequencies,<br>       ! NPT and cell optimizations, need higher cutoffs)<br>       CUTOFF 600<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 1.0E-5 <br>       ! used for MD, the method used to generate the initial guess.<br>       EXTRAPOLATION ASPC<br>       EXTRAPOLATION_ORDER 3 <br>    &END<br><br>    &PRINT<br>       ! at the end of the SCF procedure generate cube files of the density<br>       &E_DENSITY_CUBE ON<br>       &END E_DENSITY_CUBE<br>    &END<br><br>    &SCF<br>       EPS_SCF 1.0E-5<br>       EPS_SCF_HIST 1.0E-5<br>       SCF_GUESS RANDOM<br>       MAX_SCF 100<br>       &OT<br>          PRECONDITIONER FULL_KINETIC<br>          MINIMIZER CG<br>       &END OT<br>       &OUTER_SCF<br>          EPS_SCF 1.0E-5<br>          MAX_SCF 50<br>          OPTIMIZER SD<br>       &END OUTER_SCF<br>       &PRINT<br>       &END PRINT<br>    &END SCF<br>    ! specify the exchange and correlation treatment<br>    &XC<br>      ! use a LDA functional <br>      &XC_FUNCTIONAL PBE<br>      &END XC_FUNCTIONAL<br>    &END XC<br>  &END DFT<br> <br>  ! description of the system<br>  &SUBSYS<br>    &CELL<br>      ABC 33.273 33.273 33.273<br>      PERIODIC XY<br>      SYMMETRY CUBIC <br>    &END <br>#      ! unit cells that are orthorhombic are more efficient with CP2K<br>    ! atom coordinates can be in the &COORD section,<br>    ! or provided as an external file.<br>    &TOPOLOGY<br>       COORD_FILE_FORMAT XYZ<br>       COORD_FILE_NAME Interface.xyz<br>    &END<br><br>! Description of basis sets and pseudo potentials for each element<br>    &KIND Na<br>      ELEMENT Na<br>      BASIS_SET SZV-MOLOPT-SR-GTH<br>      POTENTIAL GTH-PBE-q9            <br>    &END KIND<br>    &KIND Si<br>      ELEMENT Si<br>      BASIS_SET SZV-MOLOPT-SR-GTH<br>      POTENTIAL GTH-PBE-q4<br>    &END KIND    <br>    &KIND S<br>      ELEMENT S<br>      BASIS_SET SZV-MOLOPT-SR-GTH<br>      POTENTIAL GTH-PBE-q6<br>    &END KIND<br>    &KIND NP<br>      ELEMENT Na<br>      BASIS_SET SZV-MOLOPT-SR-GTH<br>      POTENTIAL GTH-PBE-q9<br>    &END KIND<br>  &END SUBSYS<br>&END FORCE_EVAL<br><br>! how to propagate the system, selection via RUN_TYPE in the &GLOBAL section<br>&MOTION<br> &GEO_OPT<br>   OPTIMIZER CG ! Good choice for 'small' systems (use LBFGS for large systems)<br>   MAX_ITER 100<br>   MAX_DR 0.003 ! adjust target as needed<br>   &CG<br>   &END CG<br> &END<br> &MD<br>   ENSEMBLE NPT_I  ! NVT ENSEMBLE<br>   TEMPERATURE 300<br>   TIMESTEP 0.1<br>   &BAROSTAT<br>     PRESSURE 1.0<br>     TEMP_TOL 5<br>     TIMECON 10<br>   &END BAROSTAT<br>   STEPS 10000<br>   &THERMOSTAT<br>     REGION MOLECULE<br>     TYPE CSVR<br>     &CSVR<br>        TIMECON 1<br>     &END CSVR<br>   &END THERMOSTAT<br>   TEMP_TOL 5<br> &END MD<br>&END<br><br>Kindly let me know what could be the possible reason for that.<br><br>Regards,<br>Aniruddha M Dive<br>PhD Student, Washington State University  <br></div>