bspy.spline_block
A class to process an array-like collection of splines that represent a system of equations.
Parameters
block (an array-like collection of rows of splines (a list of lists)): The block of splines represents a system of equations. Splines in the same row are treated as if they are added together. Each row need not have the same number of splines, but all splines in a row must have the same number of dependent variables (same nDep). Corresponding independent variables must have the same domain.
For example, say you wanted to represent the system: F(u, v, w) + G(u) = 0, h(u, v) = 0, where F and G are 2D vector functions and h is a scalar function. After fitting F, G, and h with splines, you'd form the following spline block: [[F, G], [h]].
You may optionally supply maps for independent variables to represent complex systems of equations. For example, say you wanted to represent a similar systems as before, but with a more complicated relationship between the independent variables: F(u, v, w) + G(v, s) = 0, h(u, t, w, s) = 0. First, you'd assign consecutive indices for each variable starting at zero. For example, (s, t, u, v, w) could be indexed as (0, 1, 2, 3, 4, 5). Then, you'd provide maps for each spline's independent variables to form the following spline block: [[([3, 4, 5], F), ([4, 0], G)], [([3, 1, 5, 0], h)]]. Notice how each spline from the first example is replaced by a (map, spline) tuple in the complex second example.
Find all the contour curves of a block of splines whose nInd
is one larger than its nDep
.
Returns
- curves (
iterable
): A collection ofSpline
curves,u(t)
, each of whose domain is [0, 1], whose range is in the parameter space of the given spline, and which satisfyself(u(t)) = 0
.
See Also
zeros
: Find the roots of a block of splines (nInd must match nDep).
Notes
Uses zeros
to find all intersection points and Spline.contour
to find individual intersection curves.
The algorithm used to to find all intersection curves is from Grandine, Thomas A., and Frederick W. Klein IV.
"A new approach to the surface intersection problem." Computer Aided Geometric Design 14, no. 2 (1997): 111-134.
Contract a spline block by assigning a fixed value to one or more of its independent variables.
Parameters
- uvw (
iterable
): An iterable of lengthnInd
that specifies the values of each independent variable to contract. A value ofNone
for an independent variable indicates that variable should remain unchanged.
Returns
- block (
SplineBlock
): The contracted spline block.
Compute the derivative of the spline block at given parameter values.
Parameters
- with_respect_to (
iterable
): An iterable of lengthnInd
that specifies the integer order of derivative for each independent variable. A zero-order derivative just evaluates the spline normally. - uvw (
iterable
): An iterable of lengthnInd
that specifies the values of each independent variable (the parameter values).
Returns
- value (
numpy.array
): The value of the derivative of the spline block at the given parameter values (array of size nDep).
Return the domain of a spline block.
Returns
- bounds (
numpy.array
): nInd x 2 array of the lower and upper bounds on each of the independent variables.
Compute the value of the spline block at given parameter values.
Parameters
- uvw (
iterable
): An iterable of lengthnInd
that specifies the values of each independent variable (the parameter values).
Returns
- value (
numpy.array
): The value of the spline block at the given parameter values (array of size nDep).
Compute the value of the spline block's Jacobian at given parameter values.
Parameters
- uvw (
iterable
): An iterable of lengthnInd
that specifies the values of each independent variable (the parameter values).
Returns
- value (
numpy.array
): The value of the spline block's Jacobian at the given parameter values. The shape of the return value is (nDep, nInd).
Compute the normal of the spline block at given parameter values. The number of independent variables must be one different than the number of dependent variables.
Parameters
- uvw (
iterable
): An iterable of lengthnInd
that specifies the values of each independent variable (the parameter values). - normalize (
boolean
, optional): If True the returned normal will have unit length (the default). Otherwise, the normal's length will be the area of the tangent space (for two independent variables, its the length of the cross product of tangent vectors). - indices (
iterable
, optional): An iterable of normal indices to calculate. For example,indices=(0, 3)
will return a vector of length 2 with the first and fourth values of the normal. IfNone
, all normal values are returned (the default).
Returns
- normal (
numpy.array
): The normal vector of the spline block at the given parameter values.
See Also
normal_spline
: Compute a spline that evaluates to the normal of the given spline block (not normalized).
Notes
Attentive readers will notice that the number of independent variables could be one more than the number of dependent variables (instead of one less, as is typical). In that case, the normal represents the null space of the matrix formed by the tangents of the spline. If the null space is greater than one dimension, the normal will be zero.
Compute a spline that evaluates to the normal of the given spline block. The length of the normal
is the area of the tangent space (for two independent variables, its the length of the cross product of tangent vectors).
The number of independent variables must be one different than the number of dependent variables.
Find all the contour curves of a block of splines whose nInd
is one larger than its nDep
.
Parameters
- indices (
iterable
, optional): An iterable of normal indices to calculate. For example,indices=(0, 3)
will make the returned spline compute a vector of length 2 with the first and fourth values of the normal. IfNone
, all normal values are returned (the default).
Returns
- spline (
Spline
): The spline that evaluates to the normal of the given spline block.
See Also
normal
: Compute the normal of the spline block at given parameter values.
Notes
Attentive readers will notice that the number of independent variables could be one more than the number of dependent variables (instead of one less, as is typical). In that case, the normal represents the null space of the matrix formed by the tangents of the spline block. If the null space is greater than one dimension, the normal will be zero.
Return the range of a spline block as lower and upper bounds on each of the dependent variables.
Reparametrize a spline block to match new domain bounds. The number of knots and coefficients remain unchanged.
Parameters
- newDomain (array-like):
nInd x 2 array of the new lower and upper bounds on each of the independent variables (same form as
returned from
domain
). If a bound pair isNone
then the original bound (and knots) are left unchanged. For example,[[0.0, 1.0], None]
will reparametrize the first independent variable and leave the second unchanged)
Returns
- block (
SplineBlock
): Reparametrized spline block.
See Also
domain
: Return the domain of a spline block.
Split a spline block into separate pieces.
Parameters
- minContinuity (
int
, optional): The minimum expected continuity of each spline block piece. The default is zero, for C0 continuity. - breaks (
iterable
of lengthnInd
orNone
, optional): An iterable that specifies the breaks at which to separate the spline block. len(breaks[ind]) == 0 if there the spline block isn't separated for theind
independent variable. If breaks isNone
(the default), the spline block will only be separated at discontinuities.
Returns
- splineBlockArray (array of
SplineBlock
): A array of spline blocks with nInd dimensions containing the spline block pieces.
Trim the domain of a spline block.
Parameters
- newDomain (array-like):
nInd x 2 array of the new lower and upper bounds on each of the independent variables (same form as
returned from
domain
). If a bound is None or nan then the original bound (and knots) are left unchanged.
Returns
- block (
SplineBlock
): Trimmed spline block.
Find the roots of a block of splines (nInd must match nDep).
Parameters
- epsilon (
float
, optional): Tolerance for root precision. The root will be within epsilon of the actual root. The default is the machine epsilon. - initialScale (array-like, optional): The initial scale of each dependent variable (as opposed to the current scale of the spline block, which may have been normalized). The default is an array of ones (size nDep).
Returns
- roots (
iterable
): An iterable containing the roots of the block of splines. If the block is zero over an interval, that root will appear as a tuple of the interval. For curves (nInd == 1), the roots are ordered.
See Also
contours
: Find all the contour curves of a spline block whose nInd
is one larger than its nDep
.
Notes
Implements a variation of the projected-polyhedron technique from Sherbrooke, Evan C., and Nicholas M. Patrikalakis. "Computation of the solutions of nonlinear polynomial systems." Computer Aided Geometric Design 10, no. 5 (1993): 379-405.