mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 13:33:13 +00:00
Analysis
This commit is contained in:
16
Esiur.Analysis/Signals/Propagation.cs
Normal file
16
Esiur.Analysis/Signals/Propagation.cs
Normal file
@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user