--
You received this message because you are subscribed to the Google Groups "QuantumEspresso" group.
To unsubscribe from this group and stop receiving emails from it, send an email to quantumespres...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/quantumespresso/CAA%2B63%2Bo_p5PYgusFreDcf3%3DMhr3uubQsAd-d0LL%2B3w5stFjZPA%40mail.gmail.com.
use verbosity = 'high' tag in &control and see if its writing the output data.also remove space before the last '/' between each name list.however, u can stop the run by giving system based command to stop run anytime using the run job ID.
more over see the below code for SCF as a sample,if u use these many tags, should be enough i think, but i am not sure about your system, but check. in this example also some tags not needed for SCF, but i used in my case.how many atoms your system has?-------------&CONTROL
calculation = 'scf'
etot_conv_thr = 3.0000000000d-04
forc_conv_thr = 1.0000000000d-04
outdir = './out/'
prefix = 'wat-in-co'
pseudo_dir = '../pseudo'
tprnfor = .true.
tstress = .true.
verbosity = 'high'
max_seconds = 10800
nstep = 120
restart_mode = 'from_scratch'
/
&SYSTEM
degauss = 2.0000000000d-02
ecutrho = 3.6000000000d+02
ecutwfc = 4.5000000000d+01
ibrav = 0
A = 7.5435
nat = 25
nosym = .true.
ntyp = 6
occupations = 'smearing'
smearing = 'cold'
input_dft='PBE'
! ## nbnd = 220
/
&ELECTRONS
conv_thr = 1.6000000000d-08
electron_maxstep = 1800
mixing_beta = 2.0000000000d-01
mixing_mode='plain'
/----------------------------------------On Wed, Dec 24, 2025 at 12:00 AM KK M <kkmwo...@gmail.com> wrote:it doesnt change anything much but will help you focus on the tags and the code. there sometimes might be hidden codes (ASCII text) may interfere. but your code is running means there is no such issue.another thing do not use so many tags. all tags may not be required. use basic essential tags only and you are using only SCF. why are you taking so much max_seconds?
Firstly you reply to the google groups also so that it is useful for everyone.second point is, as per my understanding, the .save file will be written at successful end of the scf step.though your run is working, but few my queries.1. is the outdir path same as working directory where your input file exists?2. are u using MPI super computer or only your desktop system?3. use of max_seconds = 5.72800e+05 is very high time 159 hours. why so much for just 20 atoms system?4. ecutrho = 360 is high for ecutwfc of 30. just 10 times of ecutwfc = ecutrho is much more than enough.5. also remove or comment out some special tags and first see if ur system is completing SCF with minimum tags. later you keep add other constraints.6. why you putting double quotes like calculation = "scf"? use single quotes only unless your QE version demands.sometimes QE doesnt show error for formatting, but at same time doesnt bother to giver error nor warning, it simply ignores. so we do not know if there is any issue with the tags. we think all are ok, if not showing any error.
occupations = 'smearing'
smearing = 'cold'
input_dft='PBE'
! ## nbnd = 220
/
&ELECTRONS
conv_thr = 1.6000000000d-08
electron_maxstep = 1800
mixing_beta = 2.0000000000d-01
mixing_mode='plain'
/
----------------------------------------
On Wed, Dec 24, 2025 at 12:00 AM KK M <kkmwo...@gmail.com> wrote:
it doesnt change anything much but will help you focus on the tags and the code. there sometimes might be hidden codes (ASCII text) may interfere. but your code is running means there is no such issue.another thing do not use so many tags. all tags may not be required. use basic essential tags only and you are using only SCF. why are you taking so much max_seconds?