can now deal with 1x1x1 geoms

This commit is contained in:
Satyapriya Gupta 2019-02-19 12:06:46 -05:00
parent 29a7f8e939
commit 3bec76e781
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ for name in filenames:
yy = np.tile(np.repeat(y,info['grid'][0] ),info['grid'][2])
zz = np.repeat(z,info['grid'][0]*info['grid'][1])
table.data = np.squeeze(np.dstack((xx,yy,zz,microstructure)))
table.data = np.squeeze(np.dstack((xx,yy,zz,microstructure)),axis=0)
table.data_writeArray()
# ------------------------------------------ finalize output ---------------------------------------