#include "base/cs_defs.h"
#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bft/bft_mem.h"
#include "atmo/cs_air_props.h"
#include "base/cs_base.h"
#include "base/cs_math.h"
#include "base/cs_physical_constants.h"
#include "atmo/cs_atmo_profile_std.h"
Functions | |
void | cs_atmo_profile_std (cs_real_t z_ref, cs_real_t p_ref, cs_real_t t_ref, cs_real_t z, cs_real_t *p, cs_real_t *t, cs_real_t *r) |
compute standard atmospheric profile (Holton p 374) |
Compute standard atmospheric profile.
void cs_atmo_profile_std | ( | cs_real_t | z_ref, |
cs_real_t | p_ref, | ||
cs_real_t | t_ref, | ||
cs_real_t | z, | ||
cs_real_t * | p, | ||
cs_real_t * | t, | ||
cs_real_t * | r ) |
compute standard atmospheric profile (Holton p 374)
Note:
[in] | z_ref | reference altitude in m |
[in] | p_ref | reference pressure |
[in] | t_ref | reference temperature |
[in] | z | absolute altitude in m |
[out] | p | pressure in Pa |
[out] | t | temperature in K |
[out] | r | density in kg/m3 |