Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
DurhamDecLab committed Feb 26, 2019
1 parent 92d6109 commit fe9c1c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ARBInterpExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
coords[:,2]=np.linspace(-2e-3,2e-3,20)

output = Run.Query((coords[3]))
print '\n'
print ('\n')
print 'Single point query, scalar field:'
print output
print '\n'
print ('\n')

Comps = Run.Query(coords)
print '\n'
print ('\n')
print 'Multi point query, scalar field:'
print (Comps)

Expand All @@ -38,11 +38,11 @@

output = Run.Query((coords[3]))
print 'Single point query, vector field:'
print '\n'
print ('\n')
print output
print '\n'
print ('\n')

Comps = Run.Query(coords)
print 'Multi point query, vector field:'
print '\n'
print ('\n')
print (Comps)

0 comments on commit fe9c1c7

Please sign in to comment.