Commit 52cd69aa authored by scottma's avatar scottma
Browse files

Add new file

parent 1f848044
Loading
Loading
Loading
Loading
Loading
+83 −0
Original line number Diff line number Diff line
module _3gpp-nr-nrm-sectorequipmentfunction {
  yang-version 1.1;
  
  namespace urn:3gpp:sa5:_3gpp-nr-nrm-sectorequipmentfunction;
  prefix seceqp;
  
  import _3gpp-common-managed-function { prefix mf3gpp; }
  import _3gpp-common-managed-element { prefix me3gpp; }
  import ietf-inet-types { prefix inet; }
  import _3gpp-5g-common-yang-types { prefix types5g3gpp; }
  import _3gpp-common-yang-types { prefix types3gpp; }
  import _3gpp-common-yang-extensions { prefix yext3gpp; }
  import _3gpp-common-top { prefix top3gpp; }
  
  organization "3gpp SA5";
  contact "https://www.3gpp.org/DynaReport/TSG-WG--S5--officials.htm?Itemid=464";
  description "This IOC represents the Sector Equipment function in NR. For more 
    information about the SectorEquipmentFunction, see 3GPP TS 28.541.
    Copyright 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, 
    TTA, TTC). All rights reserved.";
  reference "3GPP TS 28.541";
  
  revision 2024-03-27 { reference CR-xxxx ; } 
  
  
eUTRANFqBands
nRFqBands
uTRANFDDFqBands
uTRANTDDFqBands
confOutputPower
Attribute related to role
theTMAList
theAntennaList
theCellList
theNRSectorCarrierList


  grouping SectorEquipmentGrp {
    description "Represents the information of a SectorEquipment Instance;
      
    leaf fqBand {
      type integer;
      mandatory true;
      min-elements 1;
      max-elements 1;
      description "This is the LTE frequency band supported by the hardware
      associated with the SectorEquipmentFunction. The earfcnDl and earfcnUl
      of cells associated with the SectorEquipmentFunction must be assigned 
      with a value within this fqBand value/  See clause 5 Table 5.2-1
      “E-UTRA frequency band” of 3GPP TS 36.104.";
    }
    leaf-list eUTRANFqBands {
        type string;
        mandatory true;
        min-elements 1;
        description "This is the list of LTE frequency bands supported by the
        hardware associated with the SectorEquipmentFunction. 
        The earfcnDl and earfcnUl or earfcn of LTE cells associated with the
        SectorEquipmentFunction must be assigned with a value within one of
        the specified eUTRANFqBands values.  
        Valid frequency band values are specified in sub-clause 5.7.3 in 
        36.104.  For HW not supporting LTE frequency bands, the list shall
        be empty.";  
    }
  }
  
  grouping SectorEquipmentGrp {
    description "Represents the SectorEquipmentFuntion IOC";
    uses SectorEquipmentFunction;
    
    augment "/me3gpp:ManagedElement" {
    list SectorEquipmentFunction {
      description "Sector Equipment Function";
      reference "3GPP TS 28.541";
      key id;
      uses top3gpp:Top_Grp;
      container attributes {
        uses SectorEquipmentGrp;
      }
      uses mf3gpp:ManagedFunctionContainedClasses;
    }
  }
}