bladex.deform.Deformation.plot

Deformation.plot(param, original=True, ctrl_points=True, spline=True, rbf=False, rbf_points=500, deformed=False, outfile=None)[source]

Plot the parametric curve. Several options can be specified.

Parameters:
  • param (array_like) – array_like of strings corresponding to the parametric curve that needs to be plotted. possible values are chord, pitch, rake, skew, camber
  • original (bool) – if True, then plot the original points of the parameter at the radii sections. Default value is True
  • ctrl_points (bool) – if True, then plot the control points of that parametric curve. Default value is True
  • spline (bool) – If True, then plot the B-spline interpolation of the parametric curve. Default value is True
  • rbf (bool) – if True, then plot the radial basis functions interpolation of the parametric curve. Default value is True
  • rbf_points (int) – number of points used for the rbf interpolation, if the flag rbf is set True. Beware that this argument does not have the same function of that when computing the control points, although both uses the radial basis function interpolation with the Wendland basis. Default value is 500
  • deformed (bool) – if True, then plot the deformed points of the parameter radial distribution, estimated using the B-spline interpolations within a given tolerance. Default value is False
  • outfile (str) – if string is passed, then the plot is saved with that name. If the value is None, then the plot is shown on the screen. Default value is None