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
Edit
333km value is probably incorrect too. Appears that ScaleHeight can change with altitude, and the value of 15.9 only applies to the lower parts of Venusian atmo.
Current Venus atmosphere height of 145km doesn't match the results I've calculated. Should be ~333km
The threshold ('e') is set so that the iteration stops when the Earth's atmosphere reaches 144km, otherwise results won't be correct for RSS.
using System;
public class Program
{
public static void Atmo( double scaleHeight, double pressure, double e ){
// value epsilon = 0.0000001 makes the threshold stop when the Earth's atmosphere reaches 144km - close enough for comparison.
}
}
outputs
144.5
333.9
The text was updated successfully, but these errors were encountered: