c
c Routine directly callable from C/C++ (it could be necessary to
c append an underscore, "_", to its name depending on the C/C++
c compiler used).
c
c
function adstyfromz(z, layer)
c
c Local density at a given altitude. Multilayer atmospheric model.
c The altitude is measured in m, and the density in g/cm3.
c
c Written by: S. J. Sciutto, La Plata 2019.
c
c
c Arguments:
c =========
c
c z............... (input, double precision) The vertical altitude
c in meters a.s.l.
c layer........... (output, integer) An integer ranging from zero
c to nlayers + 1 indicating the atmospheric layer
c corresponding to the given depth. Layer 0 is
c returned when the altitude is negative, and
c layer nlayers + 1 is returned when depth is
c negative (no physical meaning).
c
c
c Return value: (double precision) The density in g/cm3.
c ============
c
c
c<--->
|
These pages are maintained by Sergio J. Sciutto |
Back to AIRES library index |
| Back to AIRES home |