├── +communication ├── +appLayer │ ├── application.m │ ├── packetDistribution.m │ ├── setTrafficModel.m │ └── setUpPacketDistribution.m ├── +channelModels │ └── updateCDLModels.m ├── +harq │ ├── harqEntity.m │ ├── newHARQProcesses.m │ └── updateHARQProcess.m ├── +macLayer │ ├── downlinkGrantFormat.m │ ├── gNBMAC.m │ ├── macBSRParser.m │ ├── macEntity.m │ ├── macMultiplex.m │ ├── macPDUParser.m │ ├── macPaddingSubPDU.m │ ├── macSubPDU.m │ ├── pdschInfo.m │ ├── puschInfo.m │ ├── ueMAC.m │ └── uplinkGrantFormat.m ├── +pathlossModels │ ├── config5GNRModels.m │ └── configFreeSpaceModel.m ├── +phyLayer │ ├── cqiSelect.m │ ├── dlPMISelect.m │ ├── gNBPassThroughPhy.m │ ├── gNBPhy.m │ ├── maxPUSCHPrecodingMatrixIndicator.m │ ├── phyInterface.m │ ├── phyLogger.m │ ├── phyRxBuffer.m │ ├── pmiSelect.m │ ├── precodedSINR.m │ ├── prgPrecode.m │ ├── riSelect.m │ ├── rxIndicationInfo.m │ ├── sinrPerSubband.m │ ├── skipWeakTimingOffset.m │ ├── srsCDMLengths.m │ ├── uePassThroughPhy.m │ └── uePhy.m ├── +rlcLayer │ ├── amEntity.m │ ├── rlcBufferStatus.m │ ├── rlcDataPDUInfo.m │ ├── rlcDataReassembly.m │ ├── rlcEntity.m │ ├── rlcLogger.m │ └── umEntity.m ├── +scheduling │ ├── bestCQI.m │ ├── proportionalFair.m │ ├── roundRobin.m │ ├── schedulerEntity.m │ └── schedulingLogger.m ├── csirsPanelDimensions.m ├── determinePRB.m ├── determineSlotType.m ├── pmiType1SinglePanelCodebook.m ├── setRLCChannelConfig.m ├── setupCSIRS.m ├── setupSINRtoCQIMappingTable.m ├── setupSRS.m ├── subbandSize.m └── validateParameters.m ├── +launcherFiles └── launchOpenStreetMapCity.m ├── +networkNodes ├── gNB.m ├── node.m └── ue.m ├── +networkTopology ├── +blockages │ ├── blockage.m │ ├── building.m │ ├── city.m │ ├── contents.m │ ├── example.m │ ├── openStreetMapCity.m │ ├── streetSystem.m │ └── wallBlockage.m └── +wraparound │ ├── example.m │ └── generateWrapAround.m ├── +parameters ├── +baseStation │ ├── +antenna │ │ ├── ula.m │ │ └── upa.m │ ├── +sensing │ │ └── radar.m │ └── gNBParameters.m ├── +building │ ├── contents.m │ ├── parameters.m │ └── predefinedPositions.m ├── +channelModels │ └── +communication │ │ └── cdl.m ├── +city │ ├── contents.m │ ├── openStreetMap.m │ └── parameters.m ├── +pathLossModels │ └── parameters.m ├── +regionOfInterest │ ├── contents.m │ └── region.m ├── +schedulingStrategies │ └── parameters.m ├── +target │ ├── poisson2D.m │ ├── predefinedPosition.m │ └── targetParameters.m ├── +trafficModels │ └── parameters.m ├── +user │ ├── poisson2D.m │ ├── predefinedPosition.m │ └── ueParameters.m ├── +wallBlockage │ ├── Contents.m │ ├── parameters.m │ └── predefinedPositions.m ├── log.m ├── simulationParameters.m └── time.m ├── +scenarios └── openStreetMapCity.m ├── +sensing ├── +channelModels │ └── basicRadarChannel.m ├── +detection │ ├── cfar2D.m │ └── getPd.m ├── +estimation │ ├── +doaEstimation │ │ ├── digitalBF.m │ │ ├── music.m │ │ └── mvdrBF.m │ ├── fft2D.m │ └── music2D.m ├── +postProcessing │ └── getRMSE.m ├── monoStaticSensing.m └── radarParams.m ├── +simulation ├── assignCellSimulationParameters.m ├── cellSimulation.m └── networkSimulation.m ├── +tools ├── HiddenHandle.m ├── colors.m ├── drawCircle2D.m ├── drawLine2D.m ├── drawLine3D.m ├── plotECDF.m ├── plotScatter3D.m └── printCopyright.m ├── +visualizationTools ├── gridVisualizer.m ├── metricsVisualizer.m └── postSimVisualization.m ├── LICENSE ├── README.md ├── contents.m ├── dataFiles ├── blockages │ └── OSM_city.json └── platformICON.bmp └── simulate.m /+communication/+appLayer/application.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+appLayer/application.m -------------------------------------------------------------------------------- /+communication/+appLayer/packetDistribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+appLayer/packetDistribution.m -------------------------------------------------------------------------------- /+communication/+appLayer/setTrafficModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+appLayer/setTrafficModel.m -------------------------------------------------------------------------------- /+communication/+appLayer/setUpPacketDistribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+appLayer/setUpPacketDistribution.m -------------------------------------------------------------------------------- /+communication/+channelModels/updateCDLModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+channelModels/updateCDLModels.m -------------------------------------------------------------------------------- /+communication/+harq/harqEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+harq/harqEntity.m -------------------------------------------------------------------------------- /+communication/+harq/newHARQProcesses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+harq/newHARQProcesses.m -------------------------------------------------------------------------------- /+communication/+harq/updateHARQProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+harq/updateHARQProcess.m -------------------------------------------------------------------------------- /+communication/+macLayer/downlinkGrantFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/downlinkGrantFormat.m -------------------------------------------------------------------------------- /+communication/+macLayer/gNBMAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/gNBMAC.m -------------------------------------------------------------------------------- /+communication/+macLayer/macBSRParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macBSRParser.m -------------------------------------------------------------------------------- /+communication/+macLayer/macEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macEntity.m -------------------------------------------------------------------------------- /+communication/+macLayer/macMultiplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macMultiplex.m -------------------------------------------------------------------------------- /+communication/+macLayer/macPDUParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macPDUParser.m -------------------------------------------------------------------------------- /+communication/+macLayer/macPaddingSubPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macPaddingSubPDU.m -------------------------------------------------------------------------------- /+communication/+macLayer/macSubPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/macSubPDU.m -------------------------------------------------------------------------------- /+communication/+macLayer/pdschInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/pdschInfo.m -------------------------------------------------------------------------------- /+communication/+macLayer/puschInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/puschInfo.m -------------------------------------------------------------------------------- /+communication/+macLayer/ueMAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/ueMAC.m -------------------------------------------------------------------------------- /+communication/+macLayer/uplinkGrantFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+macLayer/uplinkGrantFormat.m -------------------------------------------------------------------------------- /+communication/+pathlossModels/config5GNRModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+pathlossModels/config5GNRModels.m -------------------------------------------------------------------------------- /+communication/+pathlossModels/configFreeSpaceModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+pathlossModels/configFreeSpaceModel.m -------------------------------------------------------------------------------- /+communication/+phyLayer/cqiSelect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/cqiSelect.m -------------------------------------------------------------------------------- /+communication/+phyLayer/dlPMISelect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/dlPMISelect.m -------------------------------------------------------------------------------- /+communication/+phyLayer/gNBPassThroughPhy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/gNBPassThroughPhy.m -------------------------------------------------------------------------------- /+communication/+phyLayer/gNBPhy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/gNBPhy.m -------------------------------------------------------------------------------- /+communication/+phyLayer/maxPUSCHPrecodingMatrixIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/maxPUSCHPrecodingMatrixIndicator.m -------------------------------------------------------------------------------- /+communication/+phyLayer/phyInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/phyInterface.m -------------------------------------------------------------------------------- /+communication/+phyLayer/phyLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/phyLogger.m -------------------------------------------------------------------------------- /+communication/+phyLayer/phyRxBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/phyRxBuffer.m -------------------------------------------------------------------------------- /+communication/+phyLayer/pmiSelect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/pmiSelect.m -------------------------------------------------------------------------------- /+communication/+phyLayer/precodedSINR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/precodedSINR.m -------------------------------------------------------------------------------- /+communication/+phyLayer/prgPrecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/prgPrecode.m -------------------------------------------------------------------------------- /+communication/+phyLayer/riSelect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/riSelect.m -------------------------------------------------------------------------------- /+communication/+phyLayer/rxIndicationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/rxIndicationInfo.m -------------------------------------------------------------------------------- /+communication/+phyLayer/sinrPerSubband.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/sinrPerSubband.m -------------------------------------------------------------------------------- /+communication/+phyLayer/skipWeakTimingOffset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/skipWeakTimingOffset.m -------------------------------------------------------------------------------- /+communication/+phyLayer/srsCDMLengths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/srsCDMLengths.m -------------------------------------------------------------------------------- /+communication/+phyLayer/uePassThroughPhy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/uePassThroughPhy.m -------------------------------------------------------------------------------- /+communication/+phyLayer/uePhy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+phyLayer/uePhy.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/amEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/amEntity.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/rlcBufferStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/rlcBufferStatus.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/rlcDataPDUInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/rlcDataPDUInfo.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/rlcDataReassembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/rlcDataReassembly.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/rlcEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/rlcEntity.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/rlcLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/rlcLogger.m -------------------------------------------------------------------------------- /+communication/+rlcLayer/umEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+rlcLayer/umEntity.m -------------------------------------------------------------------------------- /+communication/+scheduling/bestCQI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+scheduling/bestCQI.m -------------------------------------------------------------------------------- /+communication/+scheduling/proportionalFair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+scheduling/proportionalFair.m -------------------------------------------------------------------------------- /+communication/+scheduling/roundRobin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+scheduling/roundRobin.m -------------------------------------------------------------------------------- /+communication/+scheduling/schedulerEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+scheduling/schedulerEntity.m -------------------------------------------------------------------------------- /+communication/+scheduling/schedulingLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/+scheduling/schedulingLogger.m -------------------------------------------------------------------------------- /+communication/csirsPanelDimensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/csirsPanelDimensions.m -------------------------------------------------------------------------------- /+communication/determinePRB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/determinePRB.m -------------------------------------------------------------------------------- /+communication/determineSlotType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/determineSlotType.m -------------------------------------------------------------------------------- /+communication/pmiType1SinglePanelCodebook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/pmiType1SinglePanelCodebook.m -------------------------------------------------------------------------------- /+communication/setRLCChannelConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/setRLCChannelConfig.m -------------------------------------------------------------------------------- /+communication/setupCSIRS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/setupCSIRS.m -------------------------------------------------------------------------------- /+communication/setupSINRtoCQIMappingTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/setupSINRtoCQIMappingTable.m -------------------------------------------------------------------------------- /+communication/setupSRS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/setupSRS.m -------------------------------------------------------------------------------- /+communication/subbandSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/subbandSize.m -------------------------------------------------------------------------------- /+communication/validateParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+communication/validateParameters.m -------------------------------------------------------------------------------- /+launcherFiles/launchOpenStreetMapCity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+launcherFiles/launchOpenStreetMapCity.m -------------------------------------------------------------------------------- /+networkNodes/gNB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkNodes/gNB.m -------------------------------------------------------------------------------- /+networkNodes/node.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkNodes/node.m -------------------------------------------------------------------------------- /+networkNodes/ue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkNodes/ue.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/blockage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/blockage.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/building.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/building.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/city.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/city.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/contents.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/example.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/openStreetMapCity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/openStreetMapCity.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/streetSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/streetSystem.m -------------------------------------------------------------------------------- /+networkTopology/+blockages/wallBlockage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+blockages/wallBlockage.m -------------------------------------------------------------------------------- /+networkTopology/+wraparound/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+wraparound/example.m -------------------------------------------------------------------------------- /+networkTopology/+wraparound/generateWrapAround.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+networkTopology/+wraparound/generateWrapAround.m -------------------------------------------------------------------------------- /+parameters/+baseStation/+antenna/ula.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+baseStation/+antenna/ula.m -------------------------------------------------------------------------------- /+parameters/+baseStation/+antenna/upa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+baseStation/+antenna/upa.m -------------------------------------------------------------------------------- /+parameters/+baseStation/+sensing/radar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+baseStation/+sensing/radar.m -------------------------------------------------------------------------------- /+parameters/+baseStation/gNBParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+baseStation/gNBParameters.m -------------------------------------------------------------------------------- /+parameters/+building/contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+building/contents.m -------------------------------------------------------------------------------- /+parameters/+building/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+building/parameters.m -------------------------------------------------------------------------------- /+parameters/+building/predefinedPositions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+building/predefinedPositions.m -------------------------------------------------------------------------------- /+parameters/+channelModels/+communication/cdl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+channelModels/+communication/cdl.m -------------------------------------------------------------------------------- /+parameters/+city/contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+city/contents.m -------------------------------------------------------------------------------- /+parameters/+city/openStreetMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+city/openStreetMap.m -------------------------------------------------------------------------------- /+parameters/+city/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+city/parameters.m -------------------------------------------------------------------------------- /+parameters/+pathLossModels/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+pathLossModels/parameters.m -------------------------------------------------------------------------------- /+parameters/+regionOfInterest/contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+regionOfInterest/contents.m -------------------------------------------------------------------------------- /+parameters/+regionOfInterest/region.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+regionOfInterest/region.m -------------------------------------------------------------------------------- /+parameters/+schedulingStrategies/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+schedulingStrategies/parameters.m -------------------------------------------------------------------------------- /+parameters/+target/poisson2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+target/poisson2D.m -------------------------------------------------------------------------------- /+parameters/+target/predefinedPosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+target/predefinedPosition.m -------------------------------------------------------------------------------- /+parameters/+target/targetParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+target/targetParameters.m -------------------------------------------------------------------------------- /+parameters/+trafficModels/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+trafficModels/parameters.m -------------------------------------------------------------------------------- /+parameters/+user/poisson2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+user/poisson2D.m -------------------------------------------------------------------------------- /+parameters/+user/predefinedPosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+user/predefinedPosition.m -------------------------------------------------------------------------------- /+parameters/+user/ueParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+user/ueParameters.m -------------------------------------------------------------------------------- /+parameters/+wallBlockage/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+wallBlockage/Contents.m -------------------------------------------------------------------------------- /+parameters/+wallBlockage/parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+wallBlockage/parameters.m -------------------------------------------------------------------------------- /+parameters/+wallBlockage/predefinedPositions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/+wallBlockage/predefinedPositions.m -------------------------------------------------------------------------------- /+parameters/log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/log.m -------------------------------------------------------------------------------- /+parameters/simulationParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/simulationParameters.m -------------------------------------------------------------------------------- /+parameters/time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+parameters/time.m -------------------------------------------------------------------------------- /+scenarios/openStreetMapCity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+scenarios/openStreetMapCity.m -------------------------------------------------------------------------------- /+sensing/+channelModels/basicRadarChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+channelModels/basicRadarChannel.m -------------------------------------------------------------------------------- /+sensing/+detection/cfar2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+detection/cfar2D.m -------------------------------------------------------------------------------- /+sensing/+detection/getPd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+detection/getPd.m -------------------------------------------------------------------------------- /+sensing/+estimation/+doaEstimation/digitalBF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+estimation/+doaEstimation/digitalBF.m -------------------------------------------------------------------------------- /+sensing/+estimation/+doaEstimation/music.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+estimation/+doaEstimation/music.m -------------------------------------------------------------------------------- /+sensing/+estimation/+doaEstimation/mvdrBF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+estimation/+doaEstimation/mvdrBF.m -------------------------------------------------------------------------------- /+sensing/+estimation/fft2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+estimation/fft2D.m -------------------------------------------------------------------------------- /+sensing/+estimation/music2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+estimation/music2D.m -------------------------------------------------------------------------------- /+sensing/+postProcessing/getRMSE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/+postProcessing/getRMSE.m -------------------------------------------------------------------------------- /+sensing/monoStaticSensing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/monoStaticSensing.m -------------------------------------------------------------------------------- /+sensing/radarParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+sensing/radarParams.m -------------------------------------------------------------------------------- /+simulation/assignCellSimulationParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+simulation/assignCellSimulationParameters.m -------------------------------------------------------------------------------- /+simulation/cellSimulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+simulation/cellSimulation.m -------------------------------------------------------------------------------- /+simulation/networkSimulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+simulation/networkSimulation.m -------------------------------------------------------------------------------- /+tools/HiddenHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/HiddenHandle.m -------------------------------------------------------------------------------- /+tools/colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/colors.m -------------------------------------------------------------------------------- /+tools/drawCircle2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/drawCircle2D.m -------------------------------------------------------------------------------- /+tools/drawLine2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/drawLine2D.m -------------------------------------------------------------------------------- /+tools/drawLine3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/drawLine3D.m -------------------------------------------------------------------------------- /+tools/plotECDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/plotECDF.m -------------------------------------------------------------------------------- /+tools/plotScatter3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/plotScatter3D.m -------------------------------------------------------------------------------- /+tools/printCopyright.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+tools/printCopyright.m -------------------------------------------------------------------------------- /+visualizationTools/gridVisualizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+visualizationTools/gridVisualizer.m -------------------------------------------------------------------------------- /+visualizationTools/metricsVisualizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+visualizationTools/metricsVisualizer.m -------------------------------------------------------------------------------- /+visualizationTools/postSimVisualization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/+visualizationTools/postSimVisualization.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/README.md -------------------------------------------------------------------------------- /contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/contents.m -------------------------------------------------------------------------------- /dataFiles/blockages/OSM_city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/dataFiles/blockages/OSM_city.json -------------------------------------------------------------------------------- /dataFiles/platformICON.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/dataFiles/platformICON.bmp -------------------------------------------------------------------------------- /simulate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xds0112/5G_based_System_level_Integrated_Sensing_and_Communication_Simulator/HEAD/simulate.m --------------------------------------------------------------------------------