Interface for Signal and Noise propagation introduced

This commit is contained in:
Lukas Klass 2020-04-08 09:47:45 +02:00
parent 15fb785b2d
commit 84f6bd0930
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
from abc import ABC, abstractmethod
class ITransmissive(ABC):
@abstractmethod
def calcSignal(self):
pass
@abstractmethod
def calcNoise(self):
pass

View File

@ -1 +1,3 @@
from esbo_etc.classes.config import *
from esbo_etc.classes.ITransmissive import *
from esbo_etc.classes.target import *