def findrefractivity(alt, step):
    ionoresidual = atmosphere.iono(alt, step)
    neutralresidual = atmosphere.neutral(alt, step)
    n = np.sum(
        1 + (ionoresidual + neutralresidual)
    ) / step  #produce the integral refractive index and divide by lenght to find average
    return n
Beispiel #2
0
def findrefractivity(alt, step):
    #must convert these to 32decimal
    ionoresidual = atmosphere.iono(alt, step)
    neutralresidual = atmosphere.neutral(alt, step)
    n = np.sum(
        (ionoresidual + neutralresidual)
    ) / step  #produce the integral refractive index and divide by lenght to find average
    return n