order_spectrum — ACOUSTICS order op

資料種類:signaltable

呼叫:import acoustics; acoustics.order_spectrum(x, rate, rpm, samples_per_rev=64, revolutions=None, max_order=None, n_peaks=5)(或 opsacoustics.get("order_spectrum"))

用法

對軸階次的振幅 —— 升速過程本該用這張譜來讀。

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

:func:angular_resample followed by an rFFT over a **whole number of

revolutions** (the record is cropped to that). Bin spacing is

`1 / whole_revolutions` in orders.

`revolutions` overrides how many whole revolutions to keep, and it matters

more than it looks. An order `o` lands exactly on a bin only when

`o * revolutions` is an integer; otherwise it straddles two and both read

low. Measured on the run-up below, which happens to cover 79.994

revolutions:

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

revolutions resolution amp at o=1.0 amp at o=3.5

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

79 (default) 0.012658 0.999967 0.636961

78 (even) 0.012821 1.000009 0.999371

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

That 0.637 is the classic two-bin scallop loss, and nothing raises: the peak

is at the right order and 36 % too small, with a second peak of almost equal

height one bin away (measured 0.6370 at order 3.4937 and 0.6353 at 3.5063).

Cropping to an even number of revolutions puts every half-integer order

on a bin. The default is the largest whole number available; pass

`revolutions` when the order you care about is fractional.

Returns a dict: `orders, magnitude (single-sided, 2/N`),

`peak_order, peak_amplitude, peak_orders / peak_amplitudes`,

`resolution_order, whole_revolutions, samples_per_rev`,

`mean_rpm, max_order`.

Measured, and this is the whole argument for the operator. A 4 s run-up from

600 to 1800 rpm at 5 kHz carrying exactly two shaft-locked components

(orders 1.0 and 3.5, unit amplitude) plus one fixed 400 Hz resonance, read

with `revolutions=78`:

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

quantity ordinary spectrum order spectrum

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

order-3.5 peak amplitude 0.070203 (of true 1) 0.999371 (of true 1)

its -3 dB width 66.50 Hz (= 3.33 ord) 0.00000 order

400 Hz resonance amplitude 1.0000, one bin 0.0517, over 26.7 ord

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

The ordinary spectrum recovers 7 % of the shaft-locked component's

amplitude, because the energy is spread over 3.3 orders' worth of bins; the

order spectrum recovers 99.94 % of it in a single bin whose -3 dB width

is one bin. The 400 Hz resonance goes the other way — sharp in hertz,

smeared across 26.7 orders after resampling. That reversal is the

diagnostic, and it is why both spectra are worth computing: what stays sharp

under angular resampling turns with the shaft, and what stays sharp under

ordinary transformation does not.

Raises `ValueError: everything :func:angular_resample` refuses (in

particular the aliasing refusal), a `revolutions` larger than the record

actually contains, and a `max_order` above the angular Nyquist

`samples_per_rev/2`.

詳細使用指南

acoustic_condition_monitoring 族使用指南

參考(範例資料・文獻)

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

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

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

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

acoustic_condition_monitoringpy -3.11 examples/acoustic_condition_monitoring.py

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

istft

同類別(order)

angular_resample


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

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