From 3da6618dd0ea7a1897f30c6c19fb0a8a275d687d Mon Sep 17 00:00:00 2001 From: Martin Skorupski Date: Mon, 30 Sep 2024 13:22:21 +0200 Subject: [PATCH] Integrate an NRCellDU into the topology - add cell tps to O-RU Issue-ID: OAM-418 Change-Id: Ic73e5d9ed352be9746db395d3a718d4d91919b92 Signed-off-by: Martin Skorupski --- code/network-generator/network_generation/model/python/o_ran_ru.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/network-generator/network_generation/model/python/o_ran_ru.py b/code/network-generator/network_generation/model/python/o_ran_ru.py index b077f47..5d88401 100644 --- a/code/network-generator/network_generation/model/python/o_ran_ru.py +++ b/code/network-generator/network_generation/model/python/o_ran_ru.py @@ -45,7 +45,7 @@ default_value: IORanRu = cast( # Define an abstract O-RAN Node class class ORanRu(ORanNode): - _interfaces = ["ofhc", "ofhu", "ofhs", "ofhm"] + _interfaces = ["ofhc", "ofhu", "ofhs", "ofhm", "cell"] def __init__( self, @@ -94,8 +94,7 @@ class ORanRu(ORanNode): result: list[NrCellDu] = [] cell_config: dict = ( self.parent.parent.parent.parent.parent.parent.configuration[ - "pattern" - ]["nrCellDu"] + "pattern"]["nrCellDu"] ) cell_angle: int = cell_config["cellAngle"] cell_scale_factor: int = cell_config["cellScaleFactorForHandoverArea"] -- 2.16.6