follow changes in Table class

This commit is contained in:
Martin Diehl 2019-12-06 04:22:18 +01:00
parent 4ddfd82304
commit f2ac87eb2f
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ for name in filenames:
damask.util.report(scriptName,name)
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
grid,size = damask.util.coordGridAndSize(table.get_array(options.pos))
grid,size = damask.util.coordGridAndSize(table.get(options.pos))
for label in options.labels:
field = table.get(label)

View File

@ -50,7 +50,7 @@ for name in filenames:
damask.util.report(scriptName,name)
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
grid,size = damask.util.coordGridAndSize(table.get_array(options.pos))
grid,size = damask.util.coordGridAndSize(table.get(options.pos))
F = table.get(options.f).reshape(np.append(grid[::-1],(3,3)))
if options.nodal:

View File

@ -44,7 +44,7 @@ for name in filenames:
damask.util.report(scriptName,name)
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
grid,size = damask.util.coordGridAndSize(table.get_array(options.pos))
grid,size = damask.util.coordGridAndSize(table.get(options.pos))
for label in options.labels:
field = table.get(label)

View File

@ -44,7 +44,7 @@ for name in filenames:
damask.util.report(scriptName,name)
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
grid,size = damask.util.coordGridAndSize(table.get_array(options.pos))
grid,size = damask.util.coordGridAndSize(table.get(options.pos))
for label in options.labels:
field = table.get(label)