├── .vscode └── launch.json ├── 3GPP_38901_channelmodel ├── Additional_modelling_components │ ├── Absolute_time_of_arrival.py │ ├── Blockage.py │ ├── Correlation_modelling_for_multi-frequency_simulations.py │ ├── Dual_mobility.py │ ├── Explicit_ground_reflection_model.py │ ├── Large_bandwidth_and_large_antenna_array.py │ ├── Oxygen_absorption.py │ ├── Spatial_consistency.py │ ├── Time-varying_Doppler_shift.py │ ├── UT_rotation.py │ └── __init__.py ├── Channel_models_for_link-level_evaluations │ └── Clustered_Delay_Line_models.py ├── Fast_fading_model │ ├── Fast_fading_model.py │ └── Fast_fading_model_with_addtional_modeling_components.py ├── LOS_probability │ └── LOS_probability.py ├── Numerical_antenna_model │ ├── Numerical_antenna_model.py │ └── 角度计算原理.png ├── O2I_penetration_loss │ └── O2I_car_penetration_loss.py └── Pathloss │ ├── Pathloss_InF.py │ ├── Pathloss_InH.py │ ├── Pathloss_RMa.py │ ├── Pathloss_UMa.py │ ├── Pathloss_UMi.py │ └── __init__.py ├── ChannelModel.code-workspace ├── ChannelModel.py ├── LICENSE ├── PhysicalLayer2ApplicationLayer_channelmodel ├── PhysicalLayer2ApplicationLayer_channelmodel.py ├── 图1.png ├── 图2.png ├── 图3.png └── 图4.png ├── README.md └── Rician-Fading-Python-main ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Enter_inputs.png ├── Initial_window.png └── Result.png └── src ├── Class ├── __init__.py └── rice.py └── main.py /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Absolute_time_of_arrival.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Absolute_time_of_arrival.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Blockage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Blockage.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Correlation_modelling_for_multi-frequency_simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Correlation_modelling_for_multi-frequency_simulations.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Dual_mobility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Dual_mobility.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Explicit_ground_reflection_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Explicit_ground_reflection_model.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Large_bandwidth_and_large_antenna_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Large_bandwidth_and_large_antenna_array.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Oxygen_absorption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Oxygen_absorption.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Spatial_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Spatial_consistency.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/Time-varying_Doppler_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/Time-varying_Doppler_shift.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/UT_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/UT_rotation.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Additional_modelling_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Additional_modelling_components/__init__.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Channel_models_for_link-level_evaluations/Clustered_Delay_Line_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Channel_models_for_link-level_evaluations/Clustered_Delay_Line_models.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Fast_fading_model/Fast_fading_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Fast_fading_model/Fast_fading_model.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Fast_fading_model/Fast_fading_model_with_addtional_modeling_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Fast_fading_model/Fast_fading_model_with_addtional_modeling_components.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/LOS_probability/LOS_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/LOS_probability/LOS_probability.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Numerical_antenna_model/Numerical_antenna_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Numerical_antenna_model/Numerical_antenna_model.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Numerical_antenna_model/角度计算原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Numerical_antenna_model/角度计算原理.png -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/O2I_penetration_loss/O2I_car_penetration_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/O2I_penetration_loss/O2I_car_penetration_loss.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/Pathloss_InF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/Pathloss_InF.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/Pathloss_InH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/Pathloss_InH.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/Pathloss_RMa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/Pathloss_RMa.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/Pathloss_UMa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/Pathloss_UMa.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/Pathloss_UMi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/Pathloss_UMi.py -------------------------------------------------------------------------------- /3GPP_38901_channelmodel/Pathloss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/3GPP_38901_channelmodel/Pathloss/__init__.py -------------------------------------------------------------------------------- /ChannelModel.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/ChannelModel.code-workspace -------------------------------------------------------------------------------- /ChannelModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/ChannelModel.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/LICENSE -------------------------------------------------------------------------------- /PhysicalLayer2ApplicationLayer_channelmodel/PhysicalLayer2ApplicationLayer_channelmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/PhysicalLayer2ApplicationLayer_channelmodel/PhysicalLayer2ApplicationLayer_channelmodel.py -------------------------------------------------------------------------------- /PhysicalLayer2ApplicationLayer_channelmodel/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/PhysicalLayer2ApplicationLayer_channelmodel/图1.png -------------------------------------------------------------------------------- /PhysicalLayer2ApplicationLayer_channelmodel/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/PhysicalLayer2ApplicationLayer_channelmodel/图2.png -------------------------------------------------------------------------------- /PhysicalLayer2ApplicationLayer_channelmodel/图3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/PhysicalLayer2ApplicationLayer_channelmodel/图3.png -------------------------------------------------------------------------------- /PhysicalLayer2ApplicationLayer_channelmodel/图4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/PhysicalLayer2ApplicationLayer_channelmodel/图4.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/README.md -------------------------------------------------------------------------------- /Rician-Fading-Python-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/.gitignore -------------------------------------------------------------------------------- /Rician-Fading-Python-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/LICENSE -------------------------------------------------------------------------------- /Rician-Fading-Python-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/README.md -------------------------------------------------------------------------------- /Rician-Fading-Python-main/docs/Enter_inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/docs/Enter_inputs.png -------------------------------------------------------------------------------- /Rician-Fading-Python-main/docs/Initial_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/docs/Initial_window.png -------------------------------------------------------------------------------- /Rician-Fading-Python-main/docs/Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/docs/Result.png -------------------------------------------------------------------------------- /Rician-Fading-Python-main/src/Class/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/src/Class/__init__.py -------------------------------------------------------------------------------- /Rician-Fading-Python-main/src/Class/rice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/src/Class/rice.py -------------------------------------------------------------------------------- /Rician-Fading-Python-main/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmbitiousWarrior/3GPP_Channel_Model/HEAD/Rician-Fading-Python-main/src/main.py --------------------------------------------------------------------------------