词条 | Euler spiral | ||||||||||||||
释义 |
An Euler spiral is a curve whose curvature changes linearly with its curve length (the curvature of a circular curve is equal to the reciprocal of the radius). Euler spirals are also commonly referred to as spiros, clothoids, or Cornu spirals. Euler spirals have applications to diffraction computations. They are also widely used as transition curves in railroad engineering/highway engineering for connecting and transitioning the geometry between a tangent and a circular curve. A similar application is also found in photonic integrated circuits. The principle of linear variation of the curvature of the transition curve between a tangent and a circular curve defines the geometry of the Euler spiral:
ApplicationsTrack transition curve{{Main article|Track transition curve}}To travel along a circular path, an object needs to be subject to a centripetal acceleration (e.g.: the moon circles around the earth because of gravity; a car turns its front wheels inward to generate a centripetal force). If a vehicle traveling on a straight path were to suddenly transition to a tangential circular path, it would require centripetal acceleration suddenly switching at the tangent point from zero to the required value; this would be difficult to achieve (think of a driver instantly moving the steering wheel from straight line to turning position, and the car actually doing it), putting mechanical stress on the vehicle's parts, and causing much discomfort (causing jerk). On early railroads this instant application of lateral force was not an issue since low speeds and wide-radius curves were employed (lateral forces on the passengers and the lateral sway was small and tolerable). As speeds of rail vehicles increased over the years, it became obvious that an easement is necessary, so that the centripetal acceleration increases linearly with the traveled distance. Given the expression of centripetal acceleration {{math| V² / R}}, the obvious solution is to provide an easement curve whose curvature, {{math| 1 / R}}, increases linearly with the traveled distance. This geometry is an Euler spiral. Unaware of the solution of the geometry by Leonhard Euler, Rankine cited the cubic curve (a polynomial curve of degree 3), which is an approximation of the Euler spiral for small angular changes in the same way that a parabola is an approximation to a circular curve. Marie Alfred Cornu (and later some civil engineers) also solved the calculus of the Euler spiral independently. Euler spirals are now widely used in rail and highway engineering for providing a transition or an easement between a tangent and a horizontal circular curve. OpticsThe Cornu spiral can be used to describe a diffraction pattern.[1] Integrated opticsBends with continuously varying radius of curvature following the Euler spiral are also used to reduce losses in photonic integrated circuits, either in singlemode waveguides,[2][3] to smoothen the abrupt change of curvature and coupling to radiation modes, or in multimode waveguides,[4] in order to suppress coupling to higher order modes and ensure effective singlemode operation. A pioneering and very elegant application of the Euler spiral to waveguides had been made as early as 1957,[5] with a hollow metal waveguide for microwaves. There the idea was to exploit the fact that a straight metal waveguide can be physically bent to naturally take a gradual bend shape resembling an Euler spiral. Auto racingMotorsport author Adam Brouillard has shown the Euler spiral's use in optimizing the racing line during the corner entry portion of a turn.[6] Typography and digital vector drawingRaph Levien has released Spiro as a toolkit for curve design, especially font design, in 2007[7][8] under a free licence. This toolkit has been implemented quite quickly afterwards in the font design tool Fontforge and the digital vector drawing Inkscape. Map projectionCutting a sphere along a spiral with width {{math| 1 / N}} and flattening out the resulting shape yields an Euler spiral when {{math|N}} tends to the infinity.[9] If the sphere is the globe, this produces a map projection whose distortion tends to zero as {{math|N}} tends to the infinity.[10] FormulationSymbols
Expansion of Fresnel integral{{Main article|Fresnel integral}}If a = 1, which is the case for normalized Euler curve, then the Cartesian coordinates are given by Fresnel integrals (or Euler integrals): Normalization and conclusionFor a given Euler curve with: or then where and . The process of obtaining solution of {{math|(x, y)}} of an Euler spiral can thus be described as:
In the normalization process, Then Generally the normalization reduces L' to a small value (<1) and results in good converging characteristics of the Fresnel integral manageable with only a few terms (at a price of increased numerical instability of the calculation, esp. for bigger values.). IllustrationGiven: Then And We scale down the Euler spiral by {{radic|60,000}}, i.e.100{{radic|6}} to normalized Euler spiral that has: And The two angles are the same. This thus confirms that the original and normalized Euler spirals are geometrically similar. The locus of the normalized curve can be determined from Fresnel Integral, while the locus of the original Euler spiral can be obtained by scaling back / up or denormalizing. Other properties of normalized Euler spiralsNormalized Euler spirals can be expressed as: Or expressed as power series: The normalized Euler spiral will converge to a single point in the limit, which can be expressed as: Normalized Euler spirals have the following properties: And Note that also means , in agreement with the last mathematical statement. Code for producing an Euler spiralThe following SageMath code produces the second graph above. The first four lines express the Euler spiral component. Fresnel functions could not be found. Instead, the integrals of two expanded Taylor series are adopted. The remaining code expresses respectively the tangent and the circle, including the computation for the center coordinates. var('L') p = integral(taylor(cos(L^2), L, 0, 12), L) q = integral(taylor(sin(L^2), L, 0, 12), L) r1 = parametric_plot([p, q], (L, 0, 1), color = 'red') r2 = line([(-1.0, 0), (0,0)], rgbcolor = 'blue') x1 = p.subs(L = 1) y1 = q.subs(L = 1) R = 0.5 x2 = x1 - R*sin(1.0) y2 = y1 + R*cos(1.0) r3 = circle((x2, y2), R, rgbcolor = 'green') show(r1 + r2 + r3, aspect_ratio = 1, axes=false) The following is Mathematica code for the Euler spiral component (it works directly in wolframalpha.com): ParametricPlot[{ FresnelC[Sqrt[2/\\[Pi]] t]/Sqrt[2/\\[Pi]], FresnelS[Sqrt[2/\\[Pi]] t]/Sqrt[2/\\[Pi]] }, {t, -10, 10}] The following is Xcas code for the Euler spiral component: plotparam([int(cos(u^2),u,0,t),int(sin(u^2),u,0,t)],t,-4,4) The following is SageMath code for the complete double ended Euler spiral: s = var('s') parametric_plot((lambda s: numerical_integral(cos(x**2),0,s)[0], lambda s: numerical_integral(sin(x**2),0,s)[0]), (-3*pi/2, 3*pi/2)) The following is JavaScript code for drawing an Euler spiral on a canvas element: function drawEulerSpiral(canvas, T, N, scale) { ctx = canvas.getContext("2d"); var dx, dy, t=0, prev = {x:0, y:0}, current; var dt = T/N; ctx.beginPath(); while (N--) { dx = Math.cos(t*t) * dt; dy = Math.sin(t*t) * dt; t += dt; current = { x: prev.x + dx, y: prev.y + dy }; ctx.lineTo(current.x*scale, current.y*scale); prev = current; } ctx.stroke(); } drawEulerSpiral(document.getElementById("myCanvas"),10,10000,100) The following is Logo (programming language) code for drawing the Euler spiral using the turtle sprite. rt 90 repeat 720 [ fd 10 lt repcount ] See also
ReferencesNotes1. ^{{cite book | title = Optics | edition = 3rd | author = Eugene Hecht | publisher = Addison-Wesley | year = 1998 | isbn = 978-0-201-30425-1 | page = 491 }} Sources2. ^{{cite journal | last = Kohtoku | first = M. | display-authors = etal | date = 7 July 2005 | title = New Waveguide Fabrication Techniques for Next-generation PLCs | url = https://www.ntt-review.jp/archive/ntttechnical.php?contents=ntr200507037.pdf | journal = NTT Technical Review | volume = 3 | issue = 7 | pages = 37–41 | access-date = 24 January 2017}} 3. ^{{cite journal| last = Li| first = G.| display-authors = etal| date = 11 May 2012| title = Ultralow-loss, high-density SOI optical waveguide routing for macrochip interconnects| journal = Optics Express| volume = 20| issue = 11| pages = 12035–12039| doi = 10.1364/OE.20.012035| pmid = 22714189}} 4. ^{{cite journal| last = Cherchi| first = M.| display-authors = etal| date = 18 July 2013| title = Dramatic size reduction of waveguide bends on a micron-scale silicon photonic platform| journal = Optics Express| volume = 21| issue = 15| pages = 17814–17823| doi = 10.1364/OE.21.017814| pmid = 23938654| arxiv = 1301.2197}} 5. ^{{cite journal| last = Unger| first = H.G.| date = September 1957| title = Normal Mode Bends for Circular Electric Waves| journal = The Bell System Technical Journal| volume = 36| issue = 5| pages = 1292–1307| doi = 10.1002/j.1538-7305.1957.tb01509.x}} 6. ^{{Cite book|title=The Perfect Corner: A Driver's Step-By-Step Guide to Finding Their Own Optimal Line Through the Physics of Racing|last=Development|first=Paradigm Shift Driver|last2=Brouillard|first2=Adam|date=2016-03-18|publisher=Paradigm Shift Motorsport Books|isbn=9780997382426|language=English}} 7. ^http://levien.com/spiro/ 8. ^http://www.typophile.com/node/33531 9. ^{{Cite journal|last=Bartholdi|first=Laurent|last2=Henriques|first2=André|date=2012|title=Orange Peels and Fresnel Integrals|journal=The Mathematical Intelligencer|language=en|volume=34|issue=3|pages=1–3|doi=10.1007/s00283-012-9304-1|issn=0343-6993}} 10. ^{{Cite web|url=https://www.youtube.com/watch?v=D3tdW9l1690|title=A Strange Map Projection (Euler Spiral) - Numberphile|last=|first=|date=|website=|archive-url=|archive-date=|dead-url=|access-date=}} Further reading{{refbegin}}
| last = Kellogg | first = Norman Benjamin | title = The Transition Curve or Curve of Adjustment | publisher = McGraw | location = New York | year = 1907 | edition = 3rd | url = https://books.google.com/books?id=ZVZCzW2codgC}}
|url=http://physics.gu.se/LISEBERG/eng/loop_pe.html |title=Roller Coaster Loop Shapes |accessdate=2010-11-12}}{{refend}} External links
4 : Transportation engineering|Calculus|Curves|Spirals |
||||||||||||||
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。