I want to run a GW calculation for the k-points positively defined between 0 and 1 k-point grid. (see pw_nscf.in)
k-points are generated by the following python script:
Code: Select all
import numpy as np
wgt = 1.0/(6*6*1)
for i in np.arange(0,1,1.0/6):
for j in np.arange(0,1,1.0/6):
for k in np.arange(0,1,1.0/1):
print (i, j, k, wgt)
refer to viewtopic.php?p=8718
I delete SAVE and rerun p2y, yambo -i -V all, uncomment NoDiagSC variable (see yambo.in).
run yambo again, it still tells me "X grid is not uniform : no " (see r_setup_2)
The forced command yambo -x -p p -g n -F gw.in only generate the gw.in file with only the comments of yambo package. Any help will be appreciated
Best regards.