You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
When testing around with various changes, we noticed something odd with the CarterBoyerLindquist.rms() function you provided us, compared to the r_isco() function we made.
CarterBoyerLindquist.rms(M, 0.998) =1.194e31
CarterBoyerLindquist.rms(M, 0.0) =1.194e31r_isco(0.998, M) =2.4615716037986176e30r_isco(0.0, M) =1.194e31
For a mass of 1 solar mass in kg.
CarterBoyerLindquist.rms(M, 0.998) =1.2369706551751847
CarterBoyerLindquist.rms(M, 0.0) =6.0r_isco(0.998, M) =1.2369706551751847r_isco(0.0, M) =6.0
For a mass of just 1.
Does this function only work with a mass of 1?
The text was updated successfully, but these errors were encountered:
dangoh123
changed the title
CarterBoyerLindquist rms function doesn't account for spin.
CarterBoyerLindquist rms function doesn't account for spin for arbitrary masses.
Mar 9, 2022
Z₁(M, a) =1+∛(1- (a / M)^2) * (∛(1+ (a / M)) +∛(1- (a / M)))
Z₂(M, a) =√(3(a / M)^2+Z₁(M, a)^2)
rms(M, a, ±) = M * (3+Z₂(M, a) ±√((3-Z₁(M, a)) * (3+Z₁(M, a) +2*Z₂(M, a))))
rms(M, a) = a >0.0?rms(M, a, -) :rms(M, a, +)
When testing around with various changes, we noticed something odd with the
CarterBoyerLindquist.rms()
function you provided us, compared to ther_isco()
function we made.For a mass of 1 solar mass in kg.
For a mass of just 1.
Does this function only work with a mass of 1?
The text was updated successfully, but these errors were encountered: