mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-14 01:53:49 +01:00
fixed stupid problem in pt_charges
This commit is contained in:
parent
504d46f693
commit
450a80e307
@ -21,7 +21,7 @@ def mv_in_ezfio(ezfio,tmp):
|
||||
os.system(cmdmv)
|
||||
|
||||
|
||||
# Getting the EZFIO
|
||||
##Getting the EZFIO
|
||||
EZFIO=sys.argv[1]
|
||||
EZFIO=EZFIO.replace("/", "")
|
||||
print(EZFIO)
|
||||
@ -66,8 +66,20 @@ zip_in_ezfio(EZFIO,tmp)
|
||||
tmp="pts_charge_coord"
|
||||
fcoord = open(tmp,'w')
|
||||
fcoord.write(" 2\n")
|
||||
fcoord.write(" "+str(n_charges)+' 3\n')
|
||||
#fcoord.write(" "+' 3 '+str(n_charges)+' \n')
|
||||
if(n_charges < 10):
|
||||
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):
|
||||
fcoord.write(' '+coord_x[i]+'\n')
|
||||
for i in range(n_charges):
|
||||
|
Loading…
Reference in New Issue
Block a user