fullseye

fmcw_design — RANGEDOPPLER design op

使い方

Bin widths, resolutions and aliasing limits of an FMCW configuration.

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)

詳しい使い方ガイド

参考(サンプルデータ・文献)

実行できる例(この op を実際に呼ぶ検証済みサンプル)

型が繋がる次の op(table を入力に取れる)

同カテゴリ(design)


Provenance: rangedoppler.py — RANGEDOPPLER operator registry. この per-op ノートは tools/opdocs.py md が自動生成(手編集しない)。

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