fmcw_design — RANGEDOPPLER design op

資料種類:table(僅由參數決定的運算子 —— 不接受影像或資料輸入)

呼叫:import rangedoppler; rangedoppler.fmcw_design(n_samples=64, n_chirps=32, sample_rate_hz=10000000.0, slope_hz_per_s=20000000000000.0, chirp_period_s=5e-05, wavelength_m=0.0038934, n_antennas=1, element_spacing_m=None)(或 opsrangedoppler.get("fmcw_design"))

用法

FMCW 組態的 bin 寬度、解析度與混疊極限。

> 以下的詳細說明為原文 —— 摘要與標題已翻譯。

The paper answer to "will this waveform see what I care about?", with no data

and no simulation — the stance :mod:visiondesign takes for optics. Every

number is closed form:

============================== ============================================

quantity formula

============================== ============================================

swept bandwidth `B = S * N_s / f_s`

range bin / resolution `dR = c / (2B) = c*f_s / (2*S*N_s)`

max unambiguous range `R_max = c*f_s / (2S) (= N_s * dR`)

beat frequency per metre `2S/c`

velocity bin / resolution `dv = lambda / (2*N_c*T_c)`

max unambiguous velocity `v_max = lambda / (4*T_c) (= N_c*dv/2`)

Doppler phase per (m/s) `4*pi*T_c / lambda` rad per chirp

coherent processing interval `N_c * T_c`

max unambiguous angle `asin(lambda / (2d))`

angular resolution (boresight) `0.886 * lambda / (N_a * d)`

============================== ============================================

The two "max" figures are hard aliasing limits, and they are the same

numbers :func:fmcw_beat_simulate refuses to cross. The angular resolution

is the 3 dB beamwidth of a uniform linear array at boresight (Van Trees 2002,

§2.4); it widens as `1/cos(theta)` off boresight, which this does not report

because it is a function, not a number.

`cube_elements and cube_mebibytes` are included because "small input,

huge allocation" is the failure mode of this family: the cube grows as

`N_a * N_c * N_s` and complex128 is 16 bytes a sample.

Returns a `dict. Raises ValueError` on a non-positive or non-finite

parameter, a wavelength over :data:MAX_WAVELENGTH_M, or a count outside its

cap.

>>> d = fmcw_design()

>>> round(d["range_bin_m"], 6), round(d["max_unambiguous_velocity_ms"], 6)

(1.171064, 19.467)

詳細使用指南

fmcw_range_doppler 族使用指南

參考(範例資料・文獻)

• 範例資料目錄(下載 URL / 授權) —— 2-D 用 skimage.data(BSD/公有領域)加合成圖,3-D 給出真實資料源(Stanford/PDS 等)的下載 URL。

• 運算子來歷與參考文獻 —— 該運算子族所依據的研究/方法出處。

• 演算法的正典(作者・年份)與用途見上面的族使用指南

可執行的範例(實際呼叫該運算子並已驗證的樣例)

fmcw_range_dopplerpy -3.11 examples/fmcw_range_doppler.py

型別可銜接的下一個運算子(可接受 table 作為輸入)

同類別(design)


*Provenance: rangedoppler.py — RANGEDOPPLER 運算子登記表。本條目由 tools/opdocs.py md 自動產生(請勿手動編輯)。*

© 2026 Kazufumi Furuse — Fullseye operator documentation. Licensed under Apache-2.0.