mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-12-22 11:33:32 +01:00
Simu: Let Antennae copy a signal to set an argument
This commit is contained in:
parent
d04dfac64e
commit
80710bee23
1 changed files with 27 additions and 8 deletions
|
@ -1,6 +1,9 @@
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
import copy
|
||||||
|
from typing import Union
|
||||||
|
|
||||||
from .location import Location
|
from .location import Location
|
||||||
|
from ..signals import Signal
|
||||||
|
|
||||||
class Antenna(Location):
|
class Antenna(Location):
|
||||||
"""
|
"""
|
||||||
|
@ -17,18 +20,34 @@ class Antenna(Location):
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "Antenna({}, {})".format(repr(self.x), repr(self.x))
|
return "Antenna({}, {})".format(repr(self.x), repr(self.x))
|
||||||
|
|
||||||
def emit(self, signal: callable) -> callable:
|
def emit(self, signal: Union[Signal, callable]) -> Union[Signal, callable]:
|
||||||
"""
|
"""
|
||||||
Return a function that emits a signal from the antenna's location
|
Emit signal from this antenna's location.
|
||||||
"""
|
|
||||||
return partial(signal, x_0=self.x)
|
|
||||||
|
|
||||||
def recv(self, signal: callable) -> callable:
|
Note that this merely sets a default argument.
|
||||||
"""
|
"""
|
||||||
Return a function that traces the signal as a function of time
|
if not isinstance(signal, Signal):
|
||||||
at the antenna's location
|
return partial(signal, x_0=self.x)
|
||||||
|
else:
|
||||||
|
new_signal = copy.copy(signal)
|
||||||
|
new_signal.x_0 = self.x
|
||||||
|
|
||||||
|
return new_signal
|
||||||
|
|
||||||
|
def recv(self, signal: Union[Signal, callable]) -> Union[Signal, callable]:
|
||||||
"""
|
"""
|
||||||
return partial(signal, x_f=self.x)
|
Trace signal as a function of time at this antenna's
|
||||||
|
location.
|
||||||
|
|
||||||
|
Note that this merely sets a default argument.
|
||||||
|
"""
|
||||||
|
if not isinstance(signal, Signal):
|
||||||
|
return partial(signal, x_f=self.x)
|
||||||
|
else:
|
||||||
|
new_signal = copy.copy(signal)
|
||||||
|
new_signal.x_f = self.x
|
||||||
|
|
||||||
|
return new_signal
|
||||||
|
|
||||||
receive = recv
|
receive = recv
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue