9. path

This module is used to maniuplate and calculate geometry quantities on 3D paths.

Note: This module uses pyopencl (via simple_cl) to compute any quantities whose complexity is \(N^2\). If your GPU has good float support, you may see a dramatic improvement in speed by adding the following at the beginning of your code:

from ilpm import path
path.set_opencl_params(device='gpu')

9.1. Overview

Path(path[, closed, info, derivative_points])

Object which describes a 3D path, optionally with attached attributes.

Tangle(paths[, ignore_empty_paths, info])

Object which describes multiple 3D paths.

load_path(fn[, ignore_empty_paths])

Load a path or tangle from a file.

load_tangle(fn[, ignore_empty_paths])

Similiar load_path(), but always returns a tangle object.

as_path(x)

Convert object to a path, if possible.

set_opencl_params([use_doubles, device, context])

Set the parameters of the OpenCL Session used for computations.

torus_knot(p, q[, r, a, NP])

Generate a (generalized) torus knot.

9.2. Classes and Functions

exception ilpm.path.ShapeError[source]

Bases: Exception

exception ilpm.path.PathError[source]

Bases: Exception

exception ilpm.path.ShapeWarning[source]

Bases: Warning

exception ilpm.path.ToDoError[source]

Bases: Exception

ilpm.path.set_opencl_params(use_doubles=None, device=None, context=None)[source]

Set the parameters of the OpenCL Session used for computations.

See simple_cl documentation for details.

Note: this function must be called before any functions that use it, or an error will be raised.

Parameters
use_doublesbool, optional (default: False)
devicestring or list, optional (default: ‘cpu’)
contextpyopencl Context or CLSession object, optional

If specified, causes CLSession to share a context.

ilpm.path.set_default_core_model(model)[source]

Set the default core model used for energy and velocity calculations.

All models adapted from Donnelly, R. J.,

Vortex rings in classical and quantum systems, Fluid Dynamics Research, 41(5), 051401 1-31 (2009).

Valid options:
  • "solid": (default) solid rotating core, constant volume

  • "hollow_cv": hollow core, constant volume

  • "hollow_cp": hollow core, constant pressure

  • "hollow_st": hollow core with surface tension

  • "nlse": Nonlinear schrodinger equation, i.e. Gross-Pitaevskii equation

  • "viscous": Viscous relaxed core (i.e. Gaussian)

The default is “solid”.

class ilpm.path.Path(path, closed=True, info={}, derivative_points=5, **kwargs)[source]

Bases: object

Object which describes a 3D path, optionally with attached attributes.

Automatically handles the calculation of geometric parameters like tangents, etc. as special attributes:

  • tangent: the tangent vector, calculated as the normalized path derivative

  • seg_length: the segment length

  • L: the total length, calculated as sum(seg_length)

  • s: path length coordinate, defined from the first point in the path

  • fs_normal, fs_binormal: the Frenet-Serret (bi-)normal

  • torsion, curvature: the torsion and curvature, from the Frenet-Serret basis

  • s_polygon, L_polygon: like s and L, but for a polygonal path

These parameters will appear as attached as attributes once they are created. If the path is modified in place these derived attributes should be deleted with clear_derived(). (This happens automatically unless the path array is modified in place.)

Also allows the attachment of arbitrary parameters to the path as arrays with shape (N, -any-), where N is the number of points in the path. These can either be defined at creation, or attached as attributes later.

Methods

apply_basis(self, B)

Apply an orthonormal basis transformation.

biot_savart_on_path(self, a[, gamma, …])

Compute the biot-savart flow field on the path.

center(self)

Return the center of the path.

clear_derived(self)

Clear all derived attributes.

color_by_proximity(self, p[, c, w, …])

Color a path by proximity to another path, tangle, or set of colored points.

colorize(self, c[, cmap, clim])

Color a Path using matplotlib specifications.

copy(self)

Return a copy of the path in which all attached arrays are copied.

cubic_bezier_resample(self, s[, attached_interp])

Resample the path using a cubic bezier.

decimate(self, ratio)

Decimate the path points, preserving end points if not closed.

eliminate_close_points(self, min_dist)

Eliminate points which are too close.

gen_normal(self, normal)

Fix a normal vector to be unit length and perpendicular to the tangent.

keep(self, indices)

Keep only the specified point indices in the path.

load(fn)

Load a path from a file.

mean(self, a)

Compute the mean of some variable over the path, accounting for non-uniform segment length.

mesh_tube(self[, width, outline])

Create a Mesh object by tracing the Path, create a tube.

midpoint(self)

Return the segment midpoints.

moment(self)

Calculates the path magnetic moment: \(\vec{m} = \frac{1}{2} \oint \vec{r} \times d\vec{r}\).

orient(self, X[, Y])

Orient tangle so specified vector is in the x-direction.

parallel_transport_framing(self[, N0, …])

Generate a parallel transport framing, starting from the first point.

partial_s(self, a)

Take a partial derivative with respect to path length of any quantity on the tangle.

reduce_by_curvature(self[, points_per_circle])

Reduce a path by eliminating points in nearly-straight sections.

resample_with_spacing(self, dl[, …])

Resample path evenly, spacing points by specified distance.

rms_radius(self)

Return the root mean squared radius of the path.

rot(self, rv)

Rotate the path in place.

save(self, fn)

Save the path as a file.

scale(self, scale)

Scale the path in place.

seg_length_per_point(self)

Compute the segment length associated with each point.

sinc_smooth(self[, width, node, window, cutoff])

Smooth the Path with a blackman windowed sinc function.

thicken(self, tube_diameter)

Parameters

to_dict(self[, omit])

Convert all parameters to a dictionary, usually for saving.

translate(self, offset)

Translate the path in place.

twist(self[, normal, per_point, normalize])

Measure the twist of a normal vector about a path.

clear_derived(self)[source]

Clear all derived attributes.

Should be used if the path is modified in place by external commands.

midpoint(self)[source]

Return the segment midpoints.

If closed==False, will return one less than the number of points.

copy(self)[source]

Return a copy of the path in which all attached arrays are copied.

rot(self, rv)[source]

Rotate the path in place.

Parameters
rvvector ([3] array)

Rotation vector, will rotate counter-clockwise around axis by an amount given be the length of the vector (in radians).

scale(self, scale)[source]

Scale the path in place.

translate(self, offset)[source]

Translate the path in place.

partial_s(self, a)[source]

Take a partial derivative with respect to path length of any quantity on the tangle.

Parameters
astring or [N, M] array

If a is a string, an attribute of the path is used. Otherwise the first dimension of a should match the number of points.

Returns
partial_s[N, M] array

The partial derivative with respect to path length. A 3 or 5 point stencil is used (depending on self.deriviative_points). Fully accounts for non-equal segment lengths and end points for open paths.

mean(self, a)[source]

Compute the mean of some variable over the path, accounting for non-uniform segment length.

Parameters
astring or [N, M] array

If a is a string, an attribute of the path is used. Otherwise the first dimension of a should match the number of points.

Returns
mean[M] array
seg_length_per_point(self)[source]

Compute the segment length associated with each point.

Returns
seg_L_per_point[N] array

For closed paths, half of the length of each adjacent segment is assigned to each point. For open paths, the end points only get a single segment piece.

to_dict(self, omit=('derivative_points', 'refine_s'))[source]

Convert all parameters to a dictionary, usually for saving.

Parameters
omitlist or tuple

Parameters not to include in dictionary.

Returns
ddict
save(self, fn)[source]

Save the path as a file. The filename is not enforced, but .path is recommended.

The resulting file is a JSON version of self.to_dict.

classmethod load(fn)[source]

Load a path from a file. Parameters ———- fn : string

A filename corresponding to a valid path.

Returns
pathPath
keep(self, indices)[source]

Keep only the specified point indices in the path.

Parameters
indicesint array
decimate(self, ratio)[source]

Decimate the path points, preserving end points if not closed.

Also decimates all the attached arrays.

Parameters
ratioint
eliminate_close_points(self, min_dist)[source]

Eliminate points which are too close.

Parameters
min_distfloat

Distance between points below which to clip.

reduce_by_curvature(self, points_per_circle=100)[source]

Reduce a path by eliminating points in nearly-straight sections.

Works by computing the angle of each corner, and only keeps points when the total accumulated angle exceeds a threshold given by the specified number of points per circle.

Parameters
points_per_circleint, optional (default: 100)
moment(self)[source]

Calculates the path magnetic moment: \(\vec{m} = \frac{1}{2} \oint \vec{r} \times d\vec{r}\). Uses a discrete approximation: \(\vec{m} \approx \frac{1}{2} \sum \left(\vec{r}_{i+1} - \vec{r}_i\right) \times \frac{1}{2}\left(\vec{r}_{i+1} + \vec{r}_i\right)\)

orient(self, X, Y=None)[source]

Orient tangle so specified vector is in the x-direction.

Parameters
Xvector
Yvector, optional

These vectors will appear as the new x and y axis, respectively. If only one is specified, the y axis is chosen semi-arbitrarily. Note: if x and y are not orthogonal, y will be adjusted so that a right-handed orthonormal basis is formed (in other words the result is always a pure rotation, with no mirroring, etc.).

apply_basis(self, B)[source]

Apply an orthonormal basis transformation.

Parameters
Bbasis array (3, 3)

Assumed to be orthonormal, but not checked.

center(self)[source]

Return the center of the path.

Computed as: \(\left<\vec{r}\right> = \frac{\sum \frac{L_i}{2}\left(\vec{r}_{i+1} + \vec{r}_i\right)}{\sum L_i}\)

rms_radius(self)[source]

Return the root mean squared radius of the path.

Computed as: \(\bar{r} = \sqrt{\frac{\sum L_i \left|\frac{\vec{r}_{i+1} + \vec{r}_i}{2} - \left<\vec{r}\right>\right|^2}{\sum L_i}}\)

gen_normal(self, normal)[source]

Fix a normal vector to be unit length and perpendicular to the tangent.

twist(self, normal=None, per_point=False, normalize=True)[source]

Measure the twist of a normal vector about a path.

Computed as \(Tw = \frac{1}{2\pi}\oint d\vec{r} \cdot \left(\vec{n} \times \partial_s\vec{n}\right)\)

If the normal is the Frenet-Serret normal, the twist becomes the (integrated) torsion; the sign convention is such that right handed helices have positive twist.

Parameters
normalvector array, optional (default: self.normal)
per_pointbool, optional (default: False)

If True, returns the twist rate per point instead of the total.

normalizebool, optional (default: True)

If True, the normal is passed through path.gen_normal() first.

Returns
twistfloat or array

The total or per point twist density.

biot_savart_on_path(self, a, gamma=1.0, core_model=None, alpha=None)[source]

Compute the biot-savart flow field on the path.

Uses an exact expression for a polygonal path; neighboring segments are not included in the expression, and are replaced with a computation for a circular arc going through three points.

Parameters
afloat

The “core size” used in the cutoff calculation.

gammafloat, optional (default: 1)

The core circulation; multiplies the overall flow.

core_modelstr, optional

The core model to use; affects the way the short range cutoff is handlded. The default is specified by a global variable; see set_default_core_model() for more information.

alphafloat, optional

The cutoff correction parameter. Usually determined from the core_model, but if specified directly overrides this setting.

colorize(self, c, cmap='jet', clim=None)[source]

Color a Path using matplotlib specifications.

Parameters
cstring or array
  • If type is string, it is interpreted like a normal matplotlib color (e.g., "r" for red, or "0.5" for 50% gray, or "#FF8888" for pink).

  • If type is array, it should have the same length as the number of points, and it will be converted to a colormap.

cmapstring or matplotlib colormap (default: ‘jet’)

The color map to use. Only relevant if c is an array.

climtuple (default: None)

The color limits. If None, the max/min of c are used.

thicken(self, tube_diameter)[source]
Parameters
tube_diameterfloat

The diameter of the tube generated by mesh_tube

color_by_proximity(self, p, c=None, w=None, rgb_only=True, power=-6, period=None)[source]

Color a path by proximity to another path, tangle, or set of colored points.

Parameters
pPath, Tangle or [N, 3] array
c[N, 3 or 4] array

The color of each point; required if p is an array, and ignored if it is a Path or Tangle (in this case the color attribute is used).

w[N] array, optional

Weight array.

rgb_onlybool, optional (default: True)

If True, the alpha component is dropped

powerint, optional (default: -6)

The power of the radial weighting function. Recommended values are <= -4.

periodNone, float or (3,) array_like (optional)

If not None, the period to use for wrapping the proximity calculation (data assumed to be go from 0-period on each axis). If one number is specified, the period is assumed to be the same on all three axes.

cubic_bezier_resample(self, s, attached_interp='linear')[source]

Resample the path using a cubic bezier.

The resulting path will go through all the original points with a tangent given by the tangent attribute.

Any properties on the path will be resample as well.

Parameters
sarray

The target s-coordinates (pathlength) of the new points.

attached_interpstr or int, optional (default: "linear")

The interpolation order for attached attributes. Passed directly to scipy.interpolate.interp1d. (Options: "linear", "nearest", "zero", "slinear", "quadratic", "cubic", or an integer specifying the spline order)

Returns
pathPath

The interpolated path, with all attached attributes resampled.

resample_with_spacing(self, dl, attached_interp='linear')[source]

Resample path evenly, spacing points by specified distance.

Parameters
dlfloat

New point spacing target. Actual spacing will slightly different, as the points will be equally spaced.

attached_interpint or string (default: "linear")

Type of interpolation for attached attributes. See cubic_bezier_resample() for details.

Returns
pathPath

The interpolated path, with all attached attributes resampled.

parallel_transport_framing(self, N0=(1, 0, 0), twist_to_close=False)[source]

Generate a parallel transport framing, starting from the first point.

Parameters
N0[3] array, optional (default: (1, 0, 0))

The normal vector to begin the framing.

twist_to_closebool, optional (default: False)

If True, the framing is uniformly twisted to close on itself. Ignored if the path is not closed.

Returns
normal[N, 3] array

Unit normal vectors

mesh_tube(self, width=None, outline=10)[source]

Create a Mesh object by tracing the Path, create a tube.

If the Path has a color attribute, the mesh will be colored accordingly.

Uses ilpm.mesh.extrude_shape().

Parameters
width[N] array, float or None, optional (default: 1)

The thickness of the tube/ribbon. If not specified, will be given by the thickness attribute, or defaults to 1.

outlineint, optional (default: 10)

The number of points for the circumference of the circle/ribbon tracing the outline.

sinc_smooth(self, width=10, node=2, window='blackman', cutoff=None)[source]

Smooth the Path with a blackman windowed sinc function. This will eleminate features in the Path that would be above a particular frequency in Fourier space.

Parameters
widthint (optional, default: 10)

Half-width of window in number of points.

nodeint (optional, default: 2)

Number of nodes in the sinc (including the edge node).

cutofffloat (optional)

The desired wavelength cutoff. If specified, width is over-ridden.

windowstr (optional, default: ‘blackman’)

Window function. Valid options: ‘square’, ‘hann’, ‘blackman’

Returns
cutofffloat

The actual cutoff wavelength, computed from integer window size.

ilpm.path.as_path(x)[source]

Convert object to a path, if possible.

class ilpm.path.Tangle(paths, ignore_empty_paths=True, info={})[source]

Bases: object

Object which describes multiple 3D paths.

Most methods are the same as for Path.

Any attribute which is valid for all of the child paths is also a valid attribute of the Tangle. (It will return a list of values from the child Paths.)

Parameters
pathslist of Paths, or objects convertable to Paths
ignore_empty_pathsbool, optional (default: True)

If True, empty paths in a Tangle are ignored.

infodict

Arbitrary info, saved in file

Methods

apply_basis(self, B)

Apply basis to the tangle.

center(self)

Return center of tangle.

closest_opposed(self[, cutoff, per_point])

Find the closet point in the Tangle where paths are facing in opposite directions.

color_by_proximity(self, p[, c, w, …])

Color a path by proximity to another path, tangle, or set of colored points.

colorize(self, c[, cmap, clim])

Color a Tangle.

compacted_segment_attribute(self, attr)

Return a compcated form of a attached attribute of the paths.

compacted_segments(self)

Create a compacted path array and a number of points array.

crossing_matrix(self)

Compute the crossing number matrix for all paths in the Tangle.

decimate(self, ratio)

Decimate all the paths in the tangle.

drop(self, attr)

Drop the specified attribute from the child paths.

drop_shorter_than(self[, N, L_polygon, L])

Remove short paths from the tangle, specified either in number of points and/or length.

eliminate_close_points(self, min_dist)

Eliminate points which are too close.

inductance_matrix(self[, a, core_model, period])

Compute the path inductance of a Tangle.

load(fn[, ignore_empty_paths])

Load a tangle from a file.

mean(self, a)

Compute the mean of some variable over the tangle.

mesh_tube(self[, width, outline])

Create a Mesh object by tracing the Tangle, create a tube.

moment(self)

Return the first moment of the path.

orient(self, vec)

Orient tangle so specified vector is in the x-direction.

reduce_by_curvature(self[, points_per_circle])

Reduce a tangle by eliminating points in nearly-straight sections.

reduce_topology(self)

Remove as many points from the tangle as possible without changing the crossings.

resample_with_spacing(self, dl[, …])

Resample path evenly, spacing points by specified distance.

rms_radius(self)

Return the root mean squared radius of the tangle.

rot(self, rv)

Rotate the tangle.

save(self, fn)

Save the path as a file.

scale(self, scale)

Scale the tangle.

sinc_smooth(self[, width, node, window, cutoff])

Smooth all Paths with a blackman windowed sinc function.

to_dict(self[, path_omit])

Returns a copy of the Tangle as a dict.

total_length(self)

Compute the total length of all the paths in the Tangle.

total_points(self)

Return the total points in all paths

translate(self, offset)

Translate the tangle.

twist(self)

Calculate the normal twist for each element in a tangle.

twist_rate(self)

Calculate the normal twist rate for each element in a tangle.

to_dict(self, path_omit=('derivative_points', 'refine_s'))[source]

Returns a copy of the Tangle as a dict.

Parameters
path_omittuple of strings

Keywords to omit from the path sub-dictionaries.

save(self, fn)[source]

Save the path as a file. The filename is not enforced, but .tangle is recommended.

The resulting file is a JSON version of self.to_dict.

classmethod load(fn, ignore_empty_paths=True)[source]

Load a tangle from a file. Parameters ———- fn : string

A filename corresponding to a valid path.

ignore_empty_pathsbool, optional (default: True)

If True, empty paths in a Tangle are ignored.

compacted_segments(self)[source]

Create a compacted path array and a number of points array.

Used primarily for OpenCL calculations.

Returns
points[total_segments + num_paths, 3] array

A vstack of all the paths in the tangle. If the path is closed, the beginning point is added the end of the appropriate chunk and num_points = len(path) + 1

num_segsint array, shape [num_paths]

The number of segments (points) in each path.

path_i0, path_i1int array, shape [num_paths]

The beginning and end index of each path. There will be a gap of 1 between i1 for path j and i0 of path j+1 because i1 references the start point of the last segment. (Exception to the rule: if a path is open and include_ends==True, then the last point will be included.)

compacted_segment_attribute(self, attr)[source]

Return a compcated form of a attached attribute of the paths.

Designed to work in coordinate with compacted_segments().

Parameters
attrstring

A valid attribute on all the paths (e.g. "tangent").

Returns
aarray

A concatenated array of the attributes whose indices match those returned by the paths from compacted_segments().

rot(self, rv)[source]

Rotate the tangle. (see Path.rot())

apply_basis(self, B)[source]

Apply basis to the tangle. (see Path.apply_basis())

translate(self, offset)[source]

Translate the tangle. (see Path.translate())

scale(self, scale)[source]

Scale the tangle. (see Path.scale())

decimate(self, ratio)[source]

Decimate all the paths in the tangle. (see Path.decimate())

total_points(self)[source]

Return the total points in all paths

moment(self)[source]

Return the first moment of the path. (see Path.moment())

orient(self, vec)[source]

Orient tangle so specified vector is in the x-direction. (see Path.orient())

center(self)[source]

Return center of tangle. (see Path.center())

rms_radius(self)[source]

Return the root mean squared radius of the tangle. (see Path.rms_radius())

eliminate_close_points(self, min_dist)[source]

Eliminate points which are too close. (see Path.eliminate_close_points())

reduce_by_curvature(self, points_per_circle=100)[source]

Reduce a tangle by eliminating points in nearly-straight sections. (see :meth:`Path.reduce_by_curvature’)

sinc_smooth(self, width=10, node=2, window='blackman', cutoff=None)[source]

Smooth all Paths with a blackman windowed sinc function. This will eleminate features in the Path that would be above a particular frequency in Fourier space.

Parameters
widthint (optional, default: 10)

Half-width of window in number of points.

nodeint (optional, default: 2)

Number of nodes in the sinc (including the edge node).

cutofffloat (optional)

The desired wavelength cutoff. If specified, width is over-ridden.

windowstr (optional, default: ‘blackman’)

Window function. Valid options: ‘square’, ‘hann’, ‘blackman’

Returns
cutofffloat

The actual cutoff wavelength, computed from integer window size.

twist(self)[source]

Calculate the normal twist for each element in a tangle. (see Path.twist())

If you need to specify a normal vector other than the predefined normal, call Path.twist() on the elements of the Tangle.

twist_rate(self)[source]

Calculate the normal twist rate for each element in a tangle. (see Path.twist())

If you need to specify a normal vector other than the predefined normal, call Path.twist() on the elements of the Tangle.

total_length(self)[source]

Compute the total length of all the paths in the Tangle.

crossing_matrix(self)[source]

Compute the crossing number matrix for all paths in the Tangle.

Returns
signed_crossings[N, N] array

The total signed crossings for each pair of paths. Self-crossing term is the Writhe, the off-diagonal terms are linking numbers (integer-ness is enforced).

unsigned crossings[N, N] array

The average number of unsigned crossings for each pair of paths, averaged over all orientations.

inductance_matrix(self, a=1.0, core_model=None, period=None)[source]

Compute the path inductance of a Tangle.

The path inductance is defined as:

\(\mathcal{E}_{ij} \approx \frac{1}{4 \pi} \oint \oint_{\left|\vec r_i - \vec r_j\right| > \frac{a}{2}} \frac{d\vec r_i \cdot d\vec r_j}{\left|\vec r - \vec r_j\right|}+ \delta_{ij} \frac{2-\alpha}{2\pi} L_i\)

Parameters
afloat, optional [default: 1.0]

The core size.

core_modelfloat or string, optional

The core model used to determine \(\alpha\); see set_default_core_model() for options. If a float value is specified, this will be used to directly set alpha(). If not specified, it is determined by the default set by set_default_core_model() [defaulut: "solid"].

period[3] array or float, optional

If specified, a 3x3x3 periodic copy of the original tangle is used to calculate inductances.

Returns
inductance(N, N) matrix
closest_opposed(self, cutoff=0, per_point=False)[source]

Find the closet point in the Tangle where paths are facing in opposite directions.

Tests the tangent vectors of all pairs of points in the Tangle, finding the closest pair for which :math:T_i \cdot T_j \leq cutoff.

If no pairs meet this criterium, NaN is returned instead.

Parameters
cutofffloat, optional (default: 0)
per_pointbool, optional (default: False)

If True, returns a list of arrays corresponding to the closest distance from each individual point.

Returns
rfloat or array

The cloesest radius meeting the condition. (Optionally for each individual point)

colorize(self, c, cmap='jet', clim=None)[source]

Color a Tangle. (see Path.colorize())

The color may be specified either as a single item, or a list/tuple of values. (e.g. a list of arrays that correspond to color values)

drop(self, attr)[source]

Drop the specified attribute from the child paths.

mean(self, a)[source]

Compute the mean of some variable over the tangle. See Path.mean()

color_by_proximity(self, p, c=None, w=None, rgb_only=True, power=-6, period=None)[source]

Color a path by proximity to another path, tangle, or set of colored points. See Path.color_by_proximity()

resample_with_spacing(self, dl, attached_interp='linear')[source]

Resample path evenly, spacing points by specified distance. See :meth:`Path.resample_with_spacing’

drop_shorter_than(self, N=None, L_polygon=None, L=None)[source]

Remove short paths from the tangle, specified either in number of points and/or length.

Parameters
Nint, optional

Clip by this number of points

L_polygon :

Clip by this length (from the L_polygon parameter of the path). This avoids complete computation of the interpolations parameters, which is much faster.

Lfloat, optional

Clip by this length (from the L parameter of the path)

mesh_tube(self, width=None, outline=10)[source]

Create a Mesh object by tracing the Tangle, create a tube.

See Path.mesh_tube() for details.

reduce_topology(self)[source]

Remove as many points from the tangle as possible without changing the crossings.

The remaining tangle will have the same topology, but with a small number of points. Topologically trivial loops will be removed; if the entire tangle is topologically trivial it should create an empty tangle.

The algorithm works by choosing a random point and testing if it can be removed without changing any crossings. (It tests for this by looking for intersections between segments and the triangle formed by the three-point neighborhood of the point.)

Note: It is possible that the reduction may get stuck if the tangled is very tangled. Typically, however, it is able to reduce the tangle succesfully.

Note 2: This algorithm can be slow; it is highly recommended to run reduce_by_curvature() on the tangle first.

class ilpm.path.NumpyAwareJSONEncoder(*, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, sort_keys=False, indent=None, separators=None, default=None)[source]

Bases: json.encoder.JSONEncoder

Methods

default(self, obj)

Implement this method in a subclass such that it returns a serializable object for o, or calls the base implementation (to raise a TypeError).

encode(self, o)

Return a JSON string representation of a Python data structure.

iterencode(self, o[, _one_shot])

Encode the given object and yield each string representation as available.

default(self, obj)[source]

Implement this method in a subclass such that it returns a serializable object for o, or calls the base implementation (to raise a TypeError).

For example, to support arbitrary iterators, you could implement default like this:

def default(self, o):
    try:
        iterable = iter(o)
    except TypeError:
        pass
    else:
        return list(iterable)
    # Let the base class default method raise the TypeError
    return JSONEncoder.default(self, o)
exception ilpm.path.FileTypeError[source]

Bases: Exception

ilpm.path.load_path(fn, ignore_empty_paths=True)[source]

Load a path or tangle from a file.

Supports either the new style path/tangle format as well as the older “.json” tangle format.

Parameters
fnstring

A filename corresponding to a valid path.

ignore_empty_pathsbool, optional (default: True)

If True, empty paths in a Tangle are ignored.

Returns
pathPath or Tangle
ilpm.path.load_tangle(fn, ignore_empty_paths=True)[source]

Similiar load_path(), but always returns a tangle object.

Parameters
fnstring

A filename corresponding to a valid path or tangle.

ignore_empty_pathsbool, optional (default: True)

If True, empty paths in a Tangle are ignored.

Returns
tangleTangle

If the filename corresponds to a Path, it is converted to a Tangle with a single path.

ilpm.path.torus_knot(p, q, r=1, a=0.3333333333333333, NP=128)[source]

Generate a (generalized) torus knot.

Constructed so that p is the number of filaments in a bundle cross-section and p/q is the twist number per revolution.

Parameters
p, q: integer

Winding numbers

r, a: float, optional

Major and minor radius (default: r=1, a=1/3)

NP: int, optional

The number of points per revolution (default: 128)

Returns
tangleTangle

A tangle of the torus knot.

class ilpm.path.TestCases(methodName='runTest')[source]

Bases: unittest.case.TestCase

Methods

__call__(self, \*args, \*\*kwds)

Call self as a function.

addCleanup(self, function, \*args, \*\*kwargs)

Add a function, with arguments, to be called when the test is completed.

addTypeEqualityFunc(self, typeobj, function)

Add a type specific assertEqual style function to compare a type.

assertAlmostEqual(self, first, second[, …])

Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the difference between the two objects is more than the given delta.

assertCountEqual(self, first, second[, msg])

An unordered sequence comparison asserting that the same elements, regardless of order.

assertDictContainsSubset(self, subset, …)

Checks whether dictionary is a superset of subset.

assertEqual(self, first, second[, msg])

Fail if the two objects are unequal as determined by the ‘==’ operator.

assertFalse(self, expr[, msg])

Check that the expression is false.

assertGreater(self, a, b[, msg])

Just like self.assertTrue(a > b), but with a nicer default message.

assertGreaterEqual(self, a, b[, msg])

Just like self.assertTrue(a >= b), but with a nicer default message.

assertIn(self, member, container[, msg])

Just like self.assertTrue(a in b), but with a nicer default message.

assertIs(self, expr1, expr2[, msg])

Just like self.assertTrue(a is b), but with a nicer default message.

assertIsInstance(self, obj, cls[, msg])

Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.

assertIsNone(self, obj[, msg])

Same as self.assertTrue(obj is None), with a nicer default message.

assertIsNot(self, expr1, expr2[, msg])

Just like self.assertTrue(a is not b), but with a nicer default message.

assertIsNotNone(self, obj[, msg])

Included for symmetry with assertIsNone.

assertLess(self, a, b[, msg])

Just like self.assertTrue(a < b), but with a nicer default message.

assertLessEqual(self, a, b[, msg])

Just like self.assertTrue(a <= b), but with a nicer default message.

assertListEqual(self, list1, list2[, msg])

A list-specific equality assertion.

assertLogs(self[, logger, level])

Fail unless a log message of level level or higher is emitted on logger_name or its children.

assertMultiLineEqual(self, first, second[, msg])

Assert that two multi-line strings are equal.

assertNotAlmostEqual(self, first, second[, …])

Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the difference between the two objects is less than the given delta.

assertNotEqual(self, first, second[, msg])

Fail if the two objects are equal as determined by the ‘!=’ operator.

assertNotIn(self, member, container[, msg])

Just like self.assertTrue(a not in b), but with a nicer default message.

assertNotIsInstance(self, obj, cls[, msg])

Included for symmetry with assertIsInstance.

assertNotRegex(self, text, unexpected_regex)

Fail the test if the text matches the regular expression.

assertRaises(self, expected_exception, …)

Fail unless an exception of class expected_exception is raised by the callable when invoked with specified positional and keyword arguments.

assertRaisesRegex(self, expected_exception, …)

Asserts that the message in a raised exception matches a regex.

assertRegex(self, text, expected_regex[, msg])

Fail the test unless the text matches the regular expression.

assertSequenceEqual(self, seq1, seq2[, msg, …])

An equality assertion for ordered sequences (like lists and tuples).

assertSetEqual(self, set1, set2[, msg])

A set-specific equality assertion.

assertTrue(self, expr[, msg])

Check that the expression is true.

assertTupleEqual(self, tuple1, tuple2[, msg])

A tuple-specific equality assertion.

assertWarns(self, expected_warning, \*args, …)

Fail unless a warning of class warnClass is triggered by the callable when invoked with specified positional and keyword arguments.

assertWarnsRegex(self, expected_warning, …)

Asserts that the message in a triggered warning matches a regexp.

debug(self)

Run the test without collecting errors in a TestResult

doCleanups(self)

Execute all cleanup functions.

fail(self[, msg])

Fail immediately, with the given message.

failureException

alias of builtins.AssertionError

setUp(self)

Hook method for setting up the test fixture before exercising it.

setUpClass()

Hook method for setting up class fixture before running tests in the class.

shortDescription(self)

Returns a one-line description of the test, or None if no description has been provided.

skipTest(self, reason)

Skip this test.

subTest(self[, msg])

Return a context manager that will return the enclosed block of code in a subtest identified by the optional message and keyword parameters.

tearDown(self)

Hook method for deconstructing the test fixture after testing it.

tearDownClass()

Hook method for deconstructing the class fixture after running all tests in the class.

assertAlmostEquals

assertDictEqual

assertEquals

assertNotAlmostEquals

assertNotEquals

assertNotRegexpMatches

assertRaisesRegexp

assertRegexpMatches

assert_

countTestCases

defaultTestResult

failIf

failIfAlmostEqual

failIfEqual

failUnless

failUnlessAlmostEqual

failUnlessEqual

failUnlessRaises

id

run

test_crossing_matrix

test_moment_path

test_save

test_tangle

setUp(self)[source]

Hook method for setting up the test fixture before exercising it.

tearDown(self)[source]

Hook method for deconstructing the test fixture after testing it.