view pathloss/fsl.c @ 99:f8b501c8bfce

top Makefile: add tfo-ut subdir
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 19 Mar 2025 01:01:58 +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);
}