Part of Wireless Communication for Underwater Acoustic Engineering  ·  Code & data: GitHub repository  ·  DOI: 10.5281/zenodo.22547577
Underwater Acoustics Technical Report

Digital Signal Processing for Underwater Acoustic Channels: Theoretical Foundations and Applied Results

Waleed Raza · Underwater Acoustic Engineering
Abstract. This report presents the theoretical foundations of digital signal processing (DSP) for underwater acoustic channels across five areas: DSP processor architecture, shallow-water channel properties, low-SNR signal detection, array processing and direction-of-arrival (DOA) estimation, and orthogonal frequency-division multiplexing (OFDM), and connects each to concrete, verified findings from two earlier reports in this portfolio: a tank characterization of a piezoelectric transducer and hydrophone system, and a lake trial of a multi-band OFDM/QPSK communication link. No textbook, paper, or secondary content is reproduced here; every external source is cited by title and author, and two original computational demonstrations, a matched-filter detector and a MUSIC direction-of-arrival estimator, are built from first principles to illustrate the underlying theory. The report's throughline is direct: matched filtering, the detection-theory literature's core primitive, is the exact technique that achieved correlation scores above 0.99 detecting a real synchronization pulse in the lake trial; the OFDM scheme described here was independently validated against a real underwater OFDM signal, reconstructed to 0.001% error vector magnitude; and the shallow-water channel properties described here (frequency-dependent absorption, short coherence times) were independently measured in the lake trial's real data. The result is a single narrative connecting documented theory to measured results.
This report contains 5 figures, numbered in sequence and cited by number in the text where they are discussed. Every external source (textbooks, papers, reference material) is listed in the References section and is not included in this repository.
List of Figures (5)
  1. Figure 1: Matched-filter detection of a known pulse in noise
  2. Figure 2: Matched-filter detection score versus SNR
  3. Figure 3: MUSIC versus conventional beamforming, simulated array
  4. Figure 4: OFDM peak-to-average power ratio (PAPR) CCDF
  5. Figure 5: Background-to-application connection diagram

1. Introduction

Why this report exists, and what it is not

The two earlier reports in this portfolio, a tank characterization of a piezoelectric underwater transducer and hydrophone system, and a channel and modulation study of a real multi-band OFDM/QPSK lake trial, both presented original measurements and original computational analysis of real data. This report is different in kind: it presents theoretical and architectural background across five areas relevant to underwater acoustic DSP, processor architecture, underwater acoustic channel properties, statistical detection theory, array signal processing, and OFDM communication, grounded in published research papers, a graduate-level array processing textbook, and university reference material, none of which is original work and none of which is reproduced in this report or included in its repository.

What this report does instead is connect the two: it presents, in its own words and at a level appropriate for proper citation, the core idea behind each background topic, and then shows, concretely, where that idea reappeared in the two earlier reports' real results. Two small computational demonstrations, a matched-filter detector and a MUSIC direction-of-arrival estimator, are built from scratch to demonstrate working understanding of the two most algorithmically involved topics. Both are clearly labeled as original illustrative code, not reproductions of any cited source.

2. DSP Processor Architecture Foundations

Why specialized hardware matters before any algorithm can run in real time

Underwater acoustic processing, matched filtering, beamforming, OFDM demodulation, is computationally intensive and, in a deployed system, must run in real time on embedded hardware. The Texas Instruments TMS320C54x and TMS320C55x fixed-point DSP families [8] illustrate why architecture matters: the C54x uses a single multiply-accumulate (MAC) unit and a 16-bit fixed instruction width, while the C55x adds a second MAC unit, four accumulators instead of two, and a variable-length instruction set (8 to 48 bits) that improves code density. The practical consequence is throughput: the C55x reaches roughly 140 to 800 million instructions per second against 30 to 160 for the C54x, at roughly one-sixth the power per instruction.

C54x: 1 MAC unitC55x: 2 MAC unitsC55x: 4x 40-bit accumulators C55x: ~5x throughputC55x: ~6x lower power/MIPS

Every algorithm discussed in this report, matched filtering (Section 4), MUSIC (Section 5), and OFDM demodulation (Section 6), reduces at its core to the same operation this comparison is about: multiply-and- accumulate, applied either as a correlation, a covariance estimate, or an FFT butterfly. The processor architecture used in a real deployed system determines whether these operations run fast enough, and at low enough power, for an autonomous underwater platform. This is why DSP architecture is foundational to the rest of this report rather than a separate topic.

3. Shallow-Water Channel Properties: Theory Meets Measurement

What the literature predicts, and what the lake trial actually measured

The literature on underwater acoustic communication channels describes the properties that make shallow-water acoustic links difficult: surface-wave-driven channel variation, medium inhomogeneities, and the resulting amplitude and phase fluctuation within and between transmitted packets, along with the associated challenge of channel estimation under these conditions. Two properties from that literature are directly testable against this portfolio's own measured data.

Frequency-dependent attenuation. Underwater acoustic absorption increases with frequency, so a wideband channel should show falling signal-to-noise ratio (SNR) at higher frequencies over a fixed range. The lake trial report measured this directly, not modeled it: real signal-to-noise ratio measured from the field recording fell from 7.9 dB at 3-6 kHz to 3.3 dB at 12-15 kHz, monotonically across all four measured bands.

Short channel coherence time. The literature on intra-packet channel variation describes shallow-water channels whose impulse response can change meaningfully within a single transmitted packet. The lake trial report measured this too: a channel estimate computed from one real received OFDM symbol was smooth and physically consistent with genuine multipath propagation, but did not remain valid for the very next symbol, 170.7 ms later, evidence that this channel's coherence time is shorter than the trial's own symbol spacing.

From the lake trial report: SNR = 7.9 dB (3-6 kHz) falling to 3.3 dB (12-15 kHz)  ·  channel estimate invalid one symbol period (170.7 ms) later

Both measurements are real, independent results from that report, not new analysis performed here; they are presented in this section because they are the empirical counterpart to the theoretical channel properties described in the literature, and seeing both together is the point of this report.

4. Detection Theory for Low-SNR Underwater Signals

From the detection-theory literature, to an original demonstration, to a real application

Two research papers address the same underlying detection problem from different angles. One proposes detecting and estimating the time-of-arrival of underwater acoustic signals of unknown structure by labeling samples as signal or noise using a constrained expectation-maximization (EM) algorithm combined with the Viterbi algorithm for hidden Markov model clustering, avoiding the need for a fixed detection threshold; it was validated against a real sea experiment. The other, by Taylor, Arrowsmith, and Anderson [4], develops a matched-filter detector combined with a p-value formulation for detecting small explosions at local distances, built on the classical Neyman-Pearson hypothesis-testing framework.

Cited, not reproduced: neither paper's code, figures, or text appear in this report. Their methods are summarized here at a conceptual level; see References [3] and [4] for the original work.

The common foundation beneath both papers is the matched filter: correlating a received signal against a known reference waveform is the provably optimal linear detector for a known signal in white Gaussian noise [7]. Figure 1 demonstrates this from scratch, an original implementation, not derived from either cited paper, on a synthetic scenario: a short pulse is buried in a noise record at 3 dB SNR, invisible to the eye, yet the matched-filter output produces a sharp, unambiguous peak at the true arrival time. Figure 2 sweeps the input SNR and shows the detection score degrading gracefully rather than catastrophically as SNR falls, the qualitative behavior both cited papers report from their own more sophisticated detectors.

Matched filter pulse detection example
Figure 1: A known pulse, invisible in a 3 dB-SNR noisy record, located exactly by matched filtering. Original synthetic demonstration.
Matched filter SNR sweep
Figure 2: Matched-filter detection score versus input SNR, averaged over 30 trials per point. Original synthetic demonstration.

This is not only a theoretical exercise. The identical technique, correlating a short known reference waveform against a much longer real recording, was used for real in the lake trial report to identify a synchronization pulse experiment: a matched filter built from one extracted pulse achieved 1,233 detections across a 1006-second recording, many with correlation scores above 0.99. The literature described the theory; the lake trial applied it to real data and it worked exactly as the theory predicts.

5. Array Signal Processing and Direction-of-Arrival Estimation

From a graduate textbook to an original simulation

Array signal processing theory, presented in Van Trees' graduate textbook Optimum Array Processing [1] and related array-processing literature, covers sensor arrays: how a set of spatially distributed sensors can be combined to estimate the direction of arrival of an incoming signal, from classical delay-and-sum beamforming through modern subspace-based methods. Neither the textbook nor any other secondary source is reproduced here.

Cited, not reproduced: Van Trees [1] is a 139 MB, 14-chapter graduate textbook; only its title and the specific algorithm it covers are referenced here. No page, figure, or code from it is included.

Figure 3 is an original, from-scratch implementation of the MUSIC (MUltiple SIgnal Classification) algorithm [6], the subspace-based direction-of-arrival method that is the modern successor to the classical beamforming theory in [1]. The scenario is a simulated 8-element uniform linear array receiving two plane waves from angles 8 degrees apart, at 10 dB SNR. This is a simulation: no multi-element hydrophone array recording exists anywhere in this project's portfolio, so the point is to demonstrate the algorithm's correctness, not to characterize a real array.

MUSIC vs conventional beamforming
Figure 3: MUSIC resolves two sources 8 degrees apart that a conventional beamformer at the same 8-element aperture barely separates. Original simulation, not real array data.

The result reproduces the textbook's central claim about subspace methods: MUSIC's pseudospectrum shows two sharp, well-separated peaks exactly at the true angles, with more than 30 dB of null depth between them, while the conventional beamformer at the same array aperture shows only a shallow, barely-resolved dip. This is the resolution advantage that motivates using subspace methods in sonar and hydrophone array systems where physical aperture is constrained.

6. OFDM for Underwater Acoustic Communication

From a foundational communication scheme to a real, validated reconstruction

OFDM (orthogonal frequency-division multiplexing) is a foundational modulation scheme: splitting a wideband channel into narrowband orthogonal subcarriers, modulating each independently, and recovering them at the receiver via the fast Fourier transform, the same technique that underlies essentially all modern wireless and underwater acoustic digital communication standards.

This is the one topic in this report where the underlying theory and applied result are not just conceptually linked but numerically identical. The lake trial report determined, from first principles and with no surviving transmission documentation, the exact OFDM parameters of a real 2018 underwater communication trial: a real-valued 8192-point FFT operating directly at 48 kHz, with 512 active QPSK subcarriers per 3 kHz sub-band. That model reproduced the known pilot data of every transmitted reference burst to within 0.001% error vector magnitude, and was then used to measure the real channel properties summarized in Section 3.

From the lake trial report: NFFT = 8192  ·  512 active QPSK subcarriers per 3 kHz sub-band  ·  EVM = 0.001% across all 6 transmitted reference bursts

OFDM's appeal lies in its spectral efficiency, robustness to narrowband interference and multipath, and straightforward equalization, properties well established in the communications literature. The lake trial report is the concrete demonstration of exactly those properties, and of the practical difficulty Section 3 already described: a channel whose coherence time is shorter than the OFDM symbol period it was built to serve.

7. Peak-to-Average Power Ratio: Why It Matters More Underwater

A known OFDM weakness, argued to be more consequential for a resonant acoustic transducer than for a radio-frequency amplifier

The same subcarrier structure that gives OFDM its spectral efficiency and multipath robustness (Section 6) also produces a time-domain waveform with a high peak-to-average power ratio (PAPR): because the transmitted signal is a sum of many independently modulated subcarriers, those subcarriers occasionally add up constructively by chance, producing instantaneous peaks many times larger than the signal's average power. This is a well-known limitation of OFDM, and two named families of technique were developed specifically to reduce it: partial transmit sequence (PTS), introduced by Müller and Huber [12], and selected mapping (SLM), introduced by Bäuml, Fischer, and Huber [13]. Neither technique is implemented here; they are cited by name and original source only, to establish that this is a recognized problem with a real, citable body of work behind it, not a claim invented for this report.

Figure 4 is an original computation of the actual PAPR of this portfolio's own OFDM scheme, not a generic textbook example. It builds a synthetic realization of the exact structure recovered and validated in the lake trial report (a real-valued 8192-point IFFT, 512 active QPSK subcarriers occupying a 3 kHz sub-band), computes the PAPR of the resulting waveform across 20,000 independent random symbol realizations, and reports the result as a complementary cumulative distribution function (CCDF), the standard way PAPR performance is reported in the OFDM literature.

OFDM PAPR CCDF for the lake trial's 8192-point, 512-subcarrier structure
Figure 4: PAPR CCDF for this portfolio's own validated OFDM structure, computed from 20,000 random symbol realizations. Original computation.
Original computation: mean PAPR = 11.51 dB  ·  99% CCDF point = 13.47 dB  ·  99.9% CCDF point = 14.22 dB, over 20,000 realizations of the lake trial's 8192-point, 512-active-subcarrier structure

Whether this specific PAPR is more or less of a problem depends on what has to reproduce the waveform faithfully at its peaks, and that is where the underwater case differs from the terrestrial radio-frequency case. The tank characterization report in this portfolio measured a piezoelectric transducer's electroacoustic response and found a peak transmitting voltage response of 225.7 dB at a resonance of 39.8 kHz, with an acoustic bandwidth of only 3.0 kHz between its -3 dB points, giving an acoustic quality factor Q of 13.3. That measurement was of a different transducer than the one used in the lake trial, but it illustrates a physical constraint that applies to resonant piezoelectric transducers generally: their usable bandwidth is narrow and fixed by Q, unlike a typical radio-frequency power amplifier, which is designed to stay linear across a comparatively much wider bandwidth than any single narrowband resonant transducer.

Argument, not a measured cross-system fact: the following reasoning connects two real, independently measured numbers from this portfolio, the tank report's 3.0 kHz transducer bandwidth and this report's 11 to 14 dB OFDM PAPR, but the connection itself is an engineering argument, not a third measurement. A high-PAPR signal driving a narrowband resonant transducer forces a choice: back off the drive power well below the transducer's peak rating so that the rare high-power peaks stay within its linear range, which wastes an already power-limited acoustic link's transmit budget, or drive it closer to its rating and accept that the peaks push the transducer toward nonlinear distortion, which generates energy outside its already-narrow 3.0 kHz passband, energy a resonant transducer cannot radiate efficiently in the first place. A radio-frequency power amplifier facing the same PAPR has a comparatively easier time, because its linear range is not pinned to a narrow mechanical resonance the way a piezoelectric transducer's is. On that reasoning, PAPR-reduction techniques such as PTS and SLM are arguably more consequential for a narrowband underwater transducer than for a broadband radio-frequency amplifier, even though the PAPR problem itself, as measured in Figure 4, is identical in both domains, since it comes from the OFDM waveform, not from the transducer.

8. Lessons Learned

From documented theory to measured results

Figure 5 summarizes the structure of this report: each background topic addressed above maps to a specific result already produced elsewhere in this portfolio, or to an original demonstration built here to show the underlying method is genuinely understood rather than only cited.

BACKGROUND (CITED) THIS PORTFOLIO (APPLIED) Detection theory papers [3][4] EM-Viterbi ToA, matched filter + p-value Lake trial: sync-pulse detection matched filter, 1233 hits, score > 0.99 Array processing literature [1] Van Trees, beamforming, MUSIC theory Figure 3: original MUSIC demo simulated 8-element array, resolves 8 deg OFDM fundamentals subcarriers, IFFT/FFT, multipath robustness Lake trial: OFDM scheme reconstruction 8192-pt FFT, EVM = 0.001% UWA channel literature absorption, coherence time, fading Lake trial: measured SNR & coherence time 7.9 to 3.3 dB  ·  coherence < 170.7 ms DSP architecture [8] TMS320C54x/C55x, MAC throughput Real-time feasibility of every method above correlation, covariance, FFT = MAC operations Every left-to-right pair above is a real, independently verifiable connection, not a rhetorical one.
Figure 5: Diagram connecting cited background material (left) to verified applied results and original demonstrations in this portfolio (right).

The lesson that generalizes across all five rows is the same one detection theory itself teaches: a technique's value is established not by how sophisticated it sounds, but by whether it performs against real data. Matched filtering is a simple, decades-old idea; it detected a real synchronization pulse at correlation scores above 0.99. An 8192-point FFT with 512 active subcarriers is a specific, checkable claim; it reproduced real pilot data to 0.001% error. MUSIC's resolution advantage over conventional beamforming is a textbook claim; the simulation in Figure 3 reproduces it directly. In each case, the cited literature provided the concept, and this portfolio's other reports, or the original demonstrations built here, provided the verification.

Nomenclature

CCDF  complementary cumulative distribution function
DOA  direction of arrival
EM  expectation-maximization
EVM  error vector magnitude
MAC  multiply-accumulate (DSP operation)
MUSIC  MUltiple SIgnal Classification
NFFT  FFT size used for OFDM (de)modulation
OFDM  orthogonal frequency-division multiplexing
PAPR  peak-to-average power ratio
PTS  partial transmit sequence
QPSK  quadrature phase-shift keying
SLM  selected mapping
SNR  signal-to-noise ratio
ToA  time of arrival
ULA  uniform linear array