In [1]:
import point_extraction as pe
In [2]:
# Set parameters for which to calculate the maps.
current = 0.1
coilWidth = 0.2
""" Calculate for one geometry only. """
dataFile = "coil_geometries/square_coil_iso_50_outer_100/square_coil_iso_50_outer_100_inner_0.001.csv"
In [3]:
%matplotlib notebook
s = pe.Geometry(dataFile)
s.SquareBoundaryPoints()
s.Plot2D()
In [7]:
%matplotlib notebook
s.Build3DGeom(0.1, loopType="inner_edge")
s.Plot3D()
In [8]:
%matplotlib notebook
s.Draw3D(0.5)
In [ ]: