FreeCalypso > hg > gsm-net-reveng
view pathloss/fsl.c @ 68:0cfea66a15f3
pathloss: implement Egli model
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 25 Oct 2024 16:09:52 +0000 |
parents | 599fac1b882d |
children |
line wrap: on
line source
/* * Free Space Loss calculation */ #define _GNU_SOURCE #include <math.h> #include "range_func.h" #define PI_f ((float) M_PI) float rf_range_freespace(float freq_mhz, float path_loss) { float wavelen = 300.0f / freq_mhz; return (wavelen / pow10f(path_loss / -20.0f)) / (PI_f * 4.0f); }