Loading [MathJax]/jax/output/HTML-CSS/jax.js

palRefco

Determine constants in atmospheric refraction model

Description:

Determine the constants A and B in the atmospheric refraction model dZ = A tan Z + B tan3 Z.

Z is the " observed" zenith distance (i.e. affected by refraction) and dZ is what to add to Z to give the " topocentric" (i.e. in vacuo) zenith distance.

Invocation

void palRefco ( double hm, double tdk, double pmb, double rh, double wl, double phi, double tlr, double eps, double refa, double refb );

Arguments

hm = double (Given)
Height of the observer above sea level (metre)
tdk = double (Given)
Ambient temperature at the observer (K)
pmb = double (Given)
Pressure at the observer (millibar)
rh = double (Given)
Relative humidity at the observer (range 0-1)
wl = double (Given)
Effective wavelength of the source (micrometre)
phi = double (Given)
Latitude of the observer (radian, astronomical)
tlr = double (Given)
Temperature lapse rate in the troposphere (K/metre)
eps = double (Given)
Precision required to terminate iteration (radian)
refa = double (Returned)
tan Z coefficient (radian)
refb = double (Returned)
tan3 Z coefficient (radian)

Notes: