Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/ITS/Propagation/LFMF/LFMF.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ class Result(Structure):
)


class Polarization(IntEnum):
Horizontal = 0
Vertical = 1


def LFMF(
h_tx__meter: float,
h_rx__meter: float,
Expand All @@ -42,7 +47,7 @@ def LFMF(
d__km: float,
epsilon: float,
sigma: float,
pol: int,
pol: Polarization,
) -> Result:
"""
Compute the Low Frequency / Medium Frequency (LF/MF) propagation prediction
Expand Down
4 changes: 1 addition & 3 deletions src/ITS/Propagation/LFMF/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@
# and Z is the version of this Python wrapper
__version__ = "1.1.0"

from .LFMF import *

__all__ = ["LFMF"]
from .LFMF import LFMF, Polarization, Result
Loading