mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
17 lines
455 B
C#
17 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Analysis.Signals
|
|
{
|
|
public static class Propagation
|
|
{
|
|
public static readonly double LightSpeed = 2.99792458e8;
|
|
public static double FindReceivedPower(double transmittedPower, double distance,
|
|
double transmitterGain, double receiverGain, double pathLoss)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|