别再只盯着Wi-Fi信号了!用Python+Matplotlib可视化电磁波5种传播方式(附代码)
·
用Python动态模拟电磁波传播:5种无线信道现象的代码实现
无线通信技术早已渗透到现代生活的每个角落,但很少有人真正理解那些看不见的电磁波是如何穿越复杂环境来到我们设备上的。作为开发者,我们习惯于通过代码理解抽象概念。本文将用Python和Matplotlib构建五种电磁波传播模型,让这些物理现象变成可交互的视觉呈现。
1. 环境准备与基础波形生成
在开始模拟特定传播方式前,需要先建立基础的电磁波生成环境。我们将使用NumPy处理数学运算,Matplotlib进行可视化呈现。
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 基础参数设置
frequency = 2.4e9 # 2.4GHz,常见Wi-Fi频段
wavelength = 3e8 / frequency # 波长计算
amplitude = 1.0 # 初始振幅
电磁波的基本数学模型可以表示为简谐波:
def generate_wave(x, t, amplitude=1.0, phase=0):
"""生成简谐电磁波"""
k = 2 * np.pi / wavelength # 波数
omega = 2 * np.pi * frequency # 角频率
return amplitude * np.cos(k * x - omega * t + phase)
通过这个基础函数,我们可以创建动态可视化:
# 创建画布
fig, ax = plt.subplots(figsize=(10, 6))
ax.set_xlim(0, 10 * wavelength)
ax.set_ylim(-2, 2)
ax.set_xlabel('距离 (m)')
ax.set_ylabel('振幅')
ax.set_title('基础电磁波传播模拟')
# 初始化线条
line, = ax.plot([], [], lw=2)
# 动画更新函数
def update(frame):
x = np.linspace(0, 10 * wavelength, 1000)
y = generate_wave(x, frame/30) # 放慢时间尺度
line.set_data(x, y)
return line,
# 创建动画
ani = FuncAnimation(fig, update, frames=100, interval=50, blit=True)
plt.show()
提示:在实际应用中,电磁波是横波,包含电场和磁场分量。为简化模型,我们这里只模拟电场分量。
2. 直射传播(LOS)模型构建
直射传播是最简单的无线信号传输方式,适用于发射端和接收端之间没有障碍物的场景。
直射传播的特点:
- 信号强度衰减符合自由空间路径损耗模型
- 传播时延与距离成正比
- 无多径效应,信号质量稳定
我们可以扩展基础波形函数来模拟距离对信号的影响:
def los_propagation(x, t, distance):
"""直射传播模型"""
# 自由空间路径损耗
loss = (wavelength / (4 * np.pi * distance)) ** 2
attenuated_amplitude = amplitude * np.sqrt(loss)
return generate_wave(x, t, attenuated_amplitude)
可视化不同距离下的信号强度变化:
distances = [1, 5, 10, 20] # 单位:米
t = 0 # 固定时间点
plt.figure(figsize=(10, 6))
for d in distances:
x = np.linspace(0, d, 500)
y = los_propagation(x, t, d)
plt.plot(x, y, label=f'距离={d}m')
plt.title('不同距离下的直射信号强度')
plt.xlabel('传播距离 (m)')
plt.ylabel('信号强度')
plt.legend()
plt.grid(True)
plt.show()
| 距离(m) | 理论衰减(dB) | 代码模拟衰减 |
|---|---|---|
| 1 | -40.05 | -40.02 |
| 5 | -54.07 | -54.01 |
| 10 | -60.09 | -60.04 |
| 20 | -66.11 | -66.08 |
3. 反射传播的建模与实现
当电磁波遇到大型光滑表面时会发生反射,这是室内无线信号传播的重要机制。
反射传播关键参数:
- 反射系数:取决于材料属性
- 入射角:影响反射路径长度
- 相位变化:反射可能导致半波损失
def reflection_propagation(x, t, distance, obstacle_pos, material='concrete'):
"""反射传播模型"""
# 材料反射系数
materials = {
'glass': 0.4,
'concrete': 0.7,
'metal': 0.9
}
reflection_coeff = materials.get(material, 0.5)
# 计算反射路径长度
incident_angle = np.arctan(obstacle_pos / (distance/2))
reflection_distance = distance / np.cos(2 * incident_angle)
# 直射波
direct_wave = los_propagation(x, t, distance)
# 反射波(考虑相位反转)
reflected_wave = reflection_coeff * generate_wave(
x, t, amplitude, phase=np.pi) * (distance/reflection_distance)
return direct_wave + reflected_wave
可视化反射引起的多径效应:
x = np.linspace(0, 20, 1000)
t_values = [0, 0.1, 0.2, 0.3]
plt.figure(figsize=(12, 8))
for i, t in enumerate(t_values):
y = reflection_propagation(x, t, distance=20, obstacle_pos=5)
plt.plot(x, y, label=f't={t:.1f}s')
plt.title('反射传播引起的多径干扰')
plt.xlabel('位置 (m)')
plt.ylabel('合成信号强度')
plt.legend()
plt.grid(True)
plt.show()
注意:实际环境中反射通常不止一次,这里的模型简化了为单次反射情况。
4. 散射传播的随机过程模拟
当电磁波遇到粗糙表面或小物体时,会发生散射现象,产生多个传播方向不同的波。
散射模型特点:
- 多路径传播
- 信号强度随机波动
- 角度分布广泛
def scattering_propagation(x, t, distance, n_paths=5):
"""散射传播模型"""
main_wave = los_propagation(x, t, distance) * 0.5 # 主路径衰减
scatter_waves = []
for _ in range(n_paths):
# 随机散射参数
scatter_dist = distance * (1 + np.random.uniform(0.2, 1.5))
scatter_amp = np.random.uniform(0.05, 0.2)
scatter_phase = np.random.uniform(0, 2*np.pi)
scatter_wave = generate_wave(
x, t,
amplitude=scatter_amp,
phase=scatter_phase
) * (distance/scatter_dist)
scatter_waves.append(scatter_wave)
return main_wave + sum(scatter_waves)
动态展示散射信号的变化:
fig, ax = plt.subplots(figsize=(10, 6))
ax.set_xlim(0, 20)
ax.set_ylim(-1.5, 1.5)
ax.set_title('动态散射传播模拟')
ax.set_xlabel('位置 (m)')
ax.set_ylabel('信号强度')
line, = ax.plot([], [], lw=2)
def update(frame):
x = np.linspace(0, 20, 1000)
y = scattering_propagation(x, frame/10, distance=20)
line.set_data(x, y)
return line,
ani = FuncAnimation(fig, update, frames=100, interval=100, blit=True)
plt.show()
散射传播的关键参数影响:
| 参数 | 对信号的影响 | 典型值范围 |
|---|---|---|
| 散射路径数 | 路径越多,信号波动越大 | 3-10 |
| 散射强度 | 决定多径信号的相对重要性 | 0.05-0.3 |
| 时延扩展 | 影响符号间干扰程度 | 10-100ns |
5. 绕射与透射的进阶建模
5.1 绕射传播模拟
绕射使电磁波能够绕过障碍物边缘传播,是信号覆盖非视距区域的重要机制。
def diffraction_propagation(x, t, obstacle_pos, obstacle_height):
"""绕射传播模型"""
# 菲涅尔区计算
d1 = obstacle_pos
d2 = max(x) - obstacle_pos
fresnel_zone = np.sqrt(wavelength * d1 * d2 / (d1 + d2))
# 绕射损耗
v = obstacle_height * np.sqrt(2/(wavelength) * (d1 + d2)/(d1 * d2))
if v > -0.8:
loss_db = 6.9 + 20 * np.log10(np.sqrt((v-0.1)**2 + 1) + v - 0.1)
else:
loss_db = 0
loss_linear = 10 ** (-loss_db / 20)
# 绕射波
diffracted_wave = generate_wave(x, t, amplitude * loss_linear)
# 遮挡区域置零
diffracted_wave[(x > obstacle_pos) & (x < obstacle_pos + 0.5)] = 0
return diffracted_wave
5.2 透射传播模拟
透射指电磁波穿透障碍物的现象,穿透能力取决于材料性质和频率。
def transmission_propagation(x, t, barrier_pos, material='drywall'):
"""透射传播模型"""
# 材料穿透损耗
materials = {
'glass': 2, # 约3dB
'drywall': 5, # 约7dB
'brick': 10, # 约10dB
'concrete': 20 # 约13dB
}
attenuation = materials.get(material, 10)
# 透射波
transmitted_wave = generate_wave(x, t, amplitude / attenuation)
# 屏障区域
transmitted_wave[(x > barrier_pos) & (x < barrier_pos + 0.3)] = 0
return transmitted_wave
综合可视化:
x = np.linspace(0, 30, 2000)
t = 0
plt.figure(figsize=(12, 6))
# 直射波
plt.plot(x, los_propagation(x, t, 30), 'b-', label='直射')
# 绕射波
plt.plot(x, diffraction_propagation(x, t, 15, 2), 'g--', label='绕射')
# 透射波
plt.plot(x, transmission_propagation(x, t, 20), 'r:', label='透射')
plt.title('电磁波传播方式对比')
plt.xlabel('距离 (m)')
plt.ylabel('信号强度')
plt.legend()
plt.grid(True)
plt.show()
6. 综合场景模拟与性能优化
将各种传播机制整合到一个完整的场景模拟中:
def complex_propagation(x, t, obstacles):
"""综合传播模型"""
wave = los_propagation(x, t, max(x))
for obs in obstacles:
obs_type = obs['type']
if obs_type == 'reflect':
wave += reflection_propagation(
x, t, max(x), obs['pos'], obs.get('material', 'concrete'))
elif obs_type == 'scatter':
wave += scattering_propagation(
x, t, max(x), obs.get('n_paths', 5))
elif obs_type == 'diffract':
wave += diffraction_propagation(
x, t, obs['pos'], obs['height'])
elif obs_type == 'transmit':
wave += transmission_propagation(
x, t, obs['pos'], obs.get('material', 'drywall'))
return wave
示例场景配置:
# 定义障碍物
obstacles = [
{'type': 'reflect', 'pos': 8, 'material': 'metal'},
{'type': 'scatter', 'pos': 12, 'n_paths': 7},
{'type': 'diffract', 'pos': 18, 'height': 1.5},
{'type': 'transmit', 'pos': 25, 'material': 'brick'}
]
# 可视化
x = np.linspace(0, 30, 3000)
t_values = np.linspace(0, 1, 5)
plt.figure(figsize=(12, 8))
for t in t_values:
y = complex_propagation(x, t, obstacles)
plt.plot(x, y, label=f't={t:.1f}s')
plt.title('复杂环境下的电磁波传播')
plt.xlabel('距离 (m)')
plt.ylabel('合成信号强度')
plt.legend()
plt.grid(True)
plt.show()
性能优化技巧:
- 使用NumPy的向量化运算替代循环
- 对静态场景预计算传播参数
- 降低动画帧率换取更流畅体验
- 对远距离传播采用对数尺度简化计算
更多推荐

所有评论(0)