Bugfix: pythond formatting bugfix

This commit is contained in:
Hrvoje Jasak 2017-01-11 12:04:45 +00:00
parent 59c57be5e4
commit bbcef01b58

View file

@ -58,12 +58,14 @@ outForces=open('forces.dat','w')
for data in zip(t,fx,fy,fz):
outForces.write(' '.join([str(d) for d in data])+'\n')
outForces.close()
outMoments=open('moments.dat','w')
for data in zip(t,mx,my,mz):
outMoments.write(' '.join([str(d) for d in data])+'\n')
outMoments.close()
# plot forces