mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-21 11:03:29 +01:00
fixed stupid problem in pt_charges
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
504d46f693
commit
450a80e307
@ -21,7 +21,7 @@ def mv_in_ezfio(ezfio,tmp):
|
|||||||
os.system(cmdmv)
|
os.system(cmdmv)
|
||||||
|
|
||||||
|
|
||||||
# Getting the EZFIO
|
##Getting the EZFIO
|
||||||
EZFIO=sys.argv[1]
|
EZFIO=sys.argv[1]
|
||||||
EZFIO=EZFIO.replace("/", "")
|
EZFIO=EZFIO.replace("/", "")
|
||||||
print(EZFIO)
|
print(EZFIO)
|
||||||
@ -66,8 +66,20 @@ zip_in_ezfio(EZFIO,tmp)
|
|||||||
tmp="pts_charge_coord"
|
tmp="pts_charge_coord"
|
||||||
fcoord = open(tmp,'w')
|
fcoord = open(tmp,'w')
|
||||||
fcoord.write(" 2\n")
|
fcoord.write(" 2\n")
|
||||||
fcoord.write(" "+str(n_charges)+' 3\n')
|
if(n_charges < 10):
|
||||||
#fcoord.write(" "+' 3 '+str(n_charges)+' \n')
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <100):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <1000):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <10000):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <100000):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <1000000):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
|
elif(n_charges <10000000):
|
||||||
|
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||||
for i in range(n_charges):
|
for i in range(n_charges):
|
||||||
fcoord.write(' '+coord_x[i]+'\n')
|
fcoord.write(' '+coord_x[i]+'\n')
|
||||||
for i in range(n_charges):
|
for i in range(n_charges):
|
||||||
|
Loading…
Reference in New Issue
Block a user