"LICENSE INFORMATION"
Copyright (c) 2007, refer to 'author' doxygen tags
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file troposphere.c.
#include <math.h>
#include "troposphere.h"
#include "constants.h"
Go to the source code of this file.
Functions | |
void | TROPOSPHERE_DetermineZenithDelayValues_WAAS_Model (const double latitude, const double height, const unsigned short dayofyear, double *zenith_dry_delay, double *zenith_wet_delay) |
void | TROPOSPHERE_GetDryAndWetDelay_UsingThe_UNBabc_MappingFunction (const double zenith_dry_delay, const double zenith_wet_delay, const double elevation, const double latitude, const double height, double *drydelay, double *wetdelay) |
void TROPOSPHERE_DetermineZenithDelayValues_WAAS_Model | ( | const double | latitude, | |
const double | height, | |||
const unsigned short | dayofyear, | |||
double * | zenith_dry_delay, | |||
double * | zenith_wet_delay | |||
) |
Computes the dry and wet zenith delays based on the WAAS model in the reference below.
latitude | user latitude [rad] |
height | user height [m] |
dayofyear | day of year (1-366) [days] |
zenith_dry_delay | dry zenith delay [m] |
zenith_wet_delay | wet zenith delay [m] |
Definition at line 150 of file troposphere.c.
void TROPOSPHERE_GetDryAndWetDelay_UsingThe_UNBabc_MappingFunction | ( | const double | zenith_dry_delay, | |
const double | zenith_wet_delay, | |||
const double | elevation, | |||
const double | latitude, | |||
const double | height, | |||
double * | drydelay, | |||
double * | wetdelay | |||
) |
Computes the dry and wet delays given the delay zenith values using the UNBabc Mapping function, described in [1], which requires elevation angle, latitude and height.
zenith_dry_delay | dry zenith delay [m] |
zenith_wet_delay | wet zenith delay [m] |
elevation | satellite elevation angle (must be >= 2 deg) [rad] |
latitude | user latitude [rad] |
height | user height (orthometric, ie above sea level) [m] |
drydelay | dry delay mapped to this elevation angle [m] |
wetdelay | wet delay mapped to this elevation angle [m] |
Definition at line 245 of file troposphere.c.