Skip to article frontmatterSkip to article content

gdsfactory.path.spiral_archimedean

gdsfactory.path.spiral_archimedean(min_bend_radius: float, separation: float, number_of_loops: float, npoints: int)Path

Returns an Archimedean spiral.

Parameters
  • min_bend_radiusInner radius of the spiral.

  • separationSeparation between the loops in um.

  • number_of_loopsnumber of loops.

  • npointsnumber of Points.

import gdsfactory as gf

p = gf.path.spiral_archimedean(min_bend_radius=5, separation=2, number_of_loops=3, npoints=200)
p.plot()