File:Roundtriptimes.png

Од Wikimedia Commons
Прејди на прегледникот Прејди на пребарувањето

Roundtriptimes.png(548 × 573 пиксели, големина: 40 КБ, MIME-тип: image/png)

Описи

Описи

Опишете во еден ред што претставува податотекава
Round-trip times and distances for space trips of constant acceleration.

Опис[уреди]

Опис This plot illustrates how a spaceship capable of 1 g acceleration for 100 years can power a round trip to most anywhere in the visible universe, and back in a lifetime or less. Additional time will have elapsed on earth by the time that you return. This advantage of constant proper acceleration in a relativistic world arises because proper velocity change is proportional to acceleration times the change in map rather than traveler time. As those two begin to differ, the advantage (over the dotted straight line above) emerges. Of course, building a spaceship that can do this is another story.
Датум
Извор сопствено дело
Автор P. Fraundorf

Added notes[уреди]

A hi-speed round-trip puzzler.

The dotted line shows how far the same round trip would take a traveler if Newtonian physics applied instead. As you can see, the lightspeed limit improves travel prospects for the accelerated traveler even though it makes things worse for the couch-potato who waits at home for the traveler to return. Relativity also can significantly reduce the (still probably exhorbitant) fuel-costs for such trips.

The bronze thrust profile inset above for a 5 traveler-year one-way trip to Proxima Centauri shows how the thrust profile (proportional to cross-sectional area) would vary during the trip. The orange mesh line around the profile corresponds to the thruster turnaround point in the trip. Even longer trips would exponentially decrease traveler time for the trip, but only at the price of a comparably-exponential increase in fuel mass on launch.

The figure at right illustrates how one might apply the equations of constant proper-acceleration to a specific (if fanciful) roundtrip.

Furthermore, it should be noted that, when discussing large distances, the expansion of the universe is important. For example, the edge of the universe (~46 billion light years) can not be reached no matter how fast you accelerate because the cosmic horizon is 16 billion light years.

Deriving unidirectional constant acceleration[уреди]

For a change of pace from most texts, lets discuss the assumptions needed for a computer to derive the equations of constant acceleration. For equations that work at any speed, we'll also give you some practice treating time as a local instead of as a global variable[1] i.e. as a value connected to readings on a specific clock.

Low-speed (Newtonian) version[уреди]

Galilean approximation in (1+1)D.

If we define coordinate-acceleration a as dv/dt and coordinate-velocity v as dx/dt where x and t are map-position and map-time, respectively, then holding constant the coordinate-acceleration a (which is not the acceleration felt by our traveler at high speeds) allows one to derive the v<<c low-speed constant coordinate-acceleration equations familiar from intro-physics texts for coordinate-velocity v[t] and map-position x[t]. Can you do it?

The following is what Mathematica needs to pull it off:

FullSimplify[
 DSolve[
  {
   v[t] == x'[t],
   a == v'[t],
   x[0] == xo,
   v[0] == vo
  },
 {x[t], v[t]},
 t
 ]
]

Here we've added the intial (t=0) boundary-conditions by defining xo as initial map-position and vo as initial coordinate-velocity to eliminate the two constants of integration. Mathematica's output is:

{{v[t] -> a t + vo, x[t] -> (a t^2)/2 + t vo + xo}}

Thus the equations for constant coordinate-acceleration in one direction might be written:

,
,

where as usual Δf ≡ ffinal - finitial. Here the first equation tells us how coordinate-velocity v changes with elapsed map-time t, while the second tells us how map-position x changes with map-time t as well as with state-of-motion (the work-energy equation) since work is mαΔx and kinetic energy is K = ½mv2.

In terms of increments instead of differentials for constant unidirectional acceleration, we can therefore also write: a = Δv/Δt = ½Δ(v2)/Δx.

Any-speed version[уреди]

proper-acceleration in (1+1)D.
proper-acceleration in (3+1)D.

For equations that work at any speed, we begin by treating the "proper" time τ on the clocks of a traveler as a local-variable, whose value we'd like to figure out relative to the local value of the traveler's position x and time t on the yardsticks and synchronized clocks of a reference map-frame. The space-time Pythagorean theorem or "metric-equation" for flat space-time, namely (cdτ)2 = (cdt)2 - (dx)2 with "lightspeed" constant c, requires that we define "proper" (in addition to "coordinate") values for the velocity and acceleration, as well as for the time, experienced by our traveler.

In particular proper-velocity w (map-distance x per unit proper-time τ) is just w ≡ dx/dτ ≡ c sinh[η], where η is referred to as hyperbolic velocity-angle or rapidity. The frame-invariant proper-acceleration[2] α felt by a traveler equals the "length-contracted" proper-velocity derivative c dη/dτ i.e. constant c times the traveler-time τ derivative of rapidity η. Holding α fixed thus allows one to derive constant proper-acceleration equations that work at any speed for map-position x[τ] and proper-velocity w[τ].

In the above discussion we are using proper-time τ local to the traveler as the independent variable so as to avoid thinking of time as a global variable. Note that unlike coordinate-velocity v≡dx/dt, proper-velocity w≡dx/dτ always equals momentum per unit mass and has no upper limit. Can you figure how map-position x and proper-velocity w = c sinh[η] depend on traveler-time τ, given this information?

The following is what Mathematica needs to pull it off:

FullSimplify[
 DSolve[
  {
   c Sinh[eta[tau]] == x'[tau],
   alpha == c eta'[tau],
   x[0] == xo,
   eta[0] == etao
  },
 {x[tau], eta[tau]}, {tau}
 ]
]

As above we specify two initial (τ=0) conditions, in this case for initial map-position xo and initial rapidity or hyperbolic velocity-angle ηo. The result is:

{
 {
  eta[tau] -> etao + (alpha tau)/c, 
  x[tau] -> (alpha xo + c^2 (-Cosh[etao] + Cosh[etao + (alpha tau)/c]))/alpha
 }
}

Note that we also get these bonus relationships: Traveler-speed on the map can be expressed in several ways, including: Lorentz-factor γ ≡ dt/dτ = cosh[η] = Sqrt[1+(w/c)2] = 1/Sqrt[1-(v/c)2], where coordinate-velocity v ≡ w/γ = c tanh[η]. For incremental changes when proper-acceleration is constant and all motion is along that direction we can also write α =Δw/Δt = cΔη/Δτ = c2Δγ/Δx = γ3a.

All of the foregoing assertions are local to the traveler's position in the map-frame of yardsticks and synchronized clocks. If we use those synchronized clocks to define simulaneity between separated events, the above also tells us about traveler motion from the perspective of stationary observers anywhere on the map. Hence these equations are spectacular for exploring constant-acceleration round-trips between stars, as illustrated in the figure at right.

Thus the equations, analogous to the Newtonian ones, for unidirectional constant proper-acceleration at any speed might be written:

,
,

where again Δf ≡ ffinal - finitial, and ηo = asinh[wo/c]. Here the first equation tells us how proper-velocity w changes with elapsed traveler-time τ and map-time Δt, while the second tells us how map-position x changes with traveler-time τ as well as with state-of-motion (the work-energy equation) since work is mαΔx and change-in kinetic energy is ΔK = mc2Δγ (given that K = (γ-1)mc2).

At low speeds (w<<c) of course, map & traveler clock times go at the same rate i.e. dt ≈ dτ, the velocity-parameters (coordinate, proper & angle) are essentially the same i.e. v ≈ w ≈ cη, coordinate and proper acceleration are about equal i.e. a ≈ α, and the any-speed equations reduce to the low-speed ones discussed above. P. Fraundorf (talk) 23:53, 1 February 2014 (UTC)

Footnotes[уреди]

  1. P. Fraundorf (2012) "A traveler-centered intro to kinematics", arxiv:1206.2877 [physics.pop-ph].
  2. Edwin F. Taylor & John Archibald Wheeler (1966 1st ed. only) Spacetime Physics (W.H. Freeman, San Francisco) ISBN 0-7167-0336-X, Chapter 1 Exercise 51 page 97-98: "Clock paradox III" (pdf архивски примерок на Wayback Machine).

Лиценцирање[уреди]

Јас, праводржецот на ова дело, со ова го објавувам истото под следниве лиценци:
GNU head Се дава дозвола за умножување, распространување и/или менување на овој документ под условите на ГНУ-овата лиценца за слободна документација, само Верзија 1.2 или било која понова верзија објавена од Фондацијата за слободна програмска опрема; без неменливи делови и без текстови на предни и задни корици. Примерок од лиценцата ќе најдете во делот наречен ГНУ-ова лиценца за слободна докуменација.
w:mk:Криејтив комонс
наведи извор сподели под исти услови
Оваа податотека е под лиценцата Криејтив комонс Наведи извор-Сподели под исти услови 4.0 Меѓународна, 3.0 Нелокализирана, 2.5 Општа, 2.0 Општа и 1.0 Општа.
Можете:
  • да споделите – да го умножувате, распространувате и емитувате делото
  • да преработувате – да преработувате
Под следните услови:
  • наведи извор – Ќе мора да дадете прикладен припис, да ставите врска до лиценцата и да укажете дали има направено промени. Ова може да биде направено на било кој разумен начин, но без да оддава впечаток дека лиценцодавецот стои зад Вас и Вашата употреба.
  • сподели под исти услови – Ако го измените или преобразите делото, или пак ако основате друго дело на него, добиеното дело (придонесот) морате да го распространувате (објавувате) само под истата или складна лиценца на изворната.
Одберете лиценца по ваш избор.

Историја на податотеката

Стиснете на датум/време за да ја видите податотеката како изгледала тогаш.

Датум/времеМинијатураДимензииКорисникКоментар
тековна15:21, 10 јануари 2010Минијатура на верзијата од 15:21, 10 јануари 2010548 × 573 (40 КБ)Unitsphere (разговор | придонеси)Added a short-trip thrust profile to suggest vehicular structures required as well.
15:49, 9 февруари 2008Минијатура на верзијата од 15:49, 9 февруари 2008534 × 565 (21 КБ)Unitsphere (разговор | придонеси)
15:00, 9 февруари 2008Минијатура на верзијата од 15:00, 9 февруари 2008534 × 550 (19 КБ)Unitsphere (разговор | придонеси)
16:12, 8 февруари 2008Минијатура на верзијата од 16:12, 8 февруари 2008535 × 545 (16 КБ)Unitsphere (разговор | придонеси)
19:31, 7 февруари 2008Минијатура на верзијата од 19:31, 7 февруари 2008489 × 498 (14 КБ)Unitsphere (разговор | придонеси)
19:09, 7 февруари 2008Минијатура на верзијата од 19:09, 7 февруари 2008377 × 391 (11 КБ)Unitsphere (разговор | придонеси)
19:05, 7 февруари 2008Минијатура на верзијата од 19:05, 7 февруари 2008371 × 388 (10 КБ)Unitsphere (разговор | придонеси)
16:26, 7 февруари 2008Минијатура на верзијата од 16:26, 7 февруари 2008377 × 389 (10 КБ)Unitsphere (разговор | придонеси){{Information |Description=This plot illustrates how a spaceship capable of 1-gee acceleration for 100 years can power a round trip to most anywhere in the visible universe in a lifetime or less. Of course, additional time may have elapsed on earth by th

Податотекава се користи во следниве 2 страници:

Глобална употреба на податотеката

Оваа податотека ја користат и следниве викија: