Pulsating Star ***
Problem: Given the relevant data of a pulsating star, calculate the star's rate of change in surface velocity, radius, and pressure. (This worksheet contains excerpts from Carroll and Ostlie (n.d.). See the complete exercise online at http://physics.weber.edu/carroll/images/aas00.pdf.)
Hints:
Assume a star has its entire mass, M, concentrated in its centre. Its surface layers of mass m<<M consist of a thin shell of radius r. Within the shell the pressure, P, is everywhere the same. Outside the shell, P is zero. Within the star, pressure and radius vary with pulsation. (Figure from Carroll and Ostlie (n.d.).)
By Newton's second law:
where
Assumption of adiabatic expansion and contraction, with initial (i) and final (f) values related as follows:
where
| (1) |
Therefore,
| (2) |
| (3) |
| (4) |
Use differences instead of differentials in the first two equations:
| (5) |
| (6) |
| (7) |
| (8) |
| (9) |
Data:
Useful Equations:
The following equations, derived above, determine the pressure, velocity, and radius of pulsation of the star, respectively:
| (10) |
Note that some equations take as input, values that are output by other equations. Therefore, put the equations in the order: v, r, and P, and write them as functions of n:
| (11) |
| (12) |
| (13) |

Solution:
To simplify the calculations, reset the constants and intial values without units.
| (14) |
| (15) |
| (16) |
| (17) |
| (18) |
| (19) |
| (20) |
| (21) |
| (22) |
Create vectors to store the output of the calculations. N contains values of n; V contains values of v; R contains values of r; and S contains values of P:
](/view.aspx?SI=154340/d8c74d900422970d413f08ce2355861d.gif)
| (23) |

| (24) |
| (25) |
| (26) |
Perform the calculations for 150 time increments:
![for n to 150 do v(n+1) := simplify(v(n)+(4*P(n)*Pi*r(n)^2/m-G*M/r(n)^2)*`Δt`); r(n+1) := simplify(v(n+1)*`Δt`+r(n)); P(n+1) := simplify(P(n)*(r(n)^3)^gamma/r(n+1)^(3*gamma)); N[n] := n; V[n] := v(n+1); R[n] := r(n+1); S[n] := P(n+1) end do:](/view.aspx?SI=154340/906dbd11296d26fd4b63eb75310aa120.gif)

| (27) |
Convert time units of 104 seconds to days and put these into a vector called M:
| (28) |
| (29) |
| (30) |
| (31) |
Create point plots of changes in velocity, radius, and pressure:

![pointplot(M, V, connect = true, title = "Change in Velocity", titlefont = [ROMAN, 15], labels = ["days", "velocity"], labeldirections = [horizontal, vertical])](/view.aspx?SI=154340/a4a3711a75a62d79c0c87354d9bab9b2.gif)
![pointplot(M, R, connect = true, title = "Change in Radius", titlefont = [ROMAN, 15], labels = ["days", radius], labeldirections = [horizontal, vertical])](/view.aspx?SI=154340/b870a6ad52b71321652365c87f8d1241.gif)

![pointplot(M, S, connect = true, title = "Change in Pressure", titlefont = [ROMAN, 15], labels = ["days", pressure], labeldirections = [horizontal, vertical])](/view.aspx?SI=154340/7b9480216418f70e188598b7c15ab886.gif)
(from Carroll and Ostlie, n.d.)
The following diagram shows the magnitude variation of Delta Cephei. Note that the increase in magnitude is more rapid than the decrease (Isles, 2010). Pulsating stars typically expand faster than they contract. The simplified example above does not show this clearly.
------------------------------------------------------------------------
References
Carroll, B. and Ostlie, D. (n.d.). Bringing Pulsating Stars into the Physics Classroom. http://physics.weber.edu/carroll/images/aas00.pdf (Accessed: 2015-09-23).
Isles, J. (2010). The Top 12 Naked-Eye Variable Stars. Sky and Telescope. http://www.skyandtelescope.com/observing/celestial-objects-to-watch/the-top-12-naked-eye-variable-stars/ (Accessed: 2015-09-23).
|