2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00
This commit is contained in:
2022-10-16 22:16:00 +03:00
parent 8e17a5b677
commit 6537913b11
14 changed files with 516 additions and 1 deletions

View 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();
}
}
}