Papers
Topics
Authors
Recent
Search
2000 character limit reached

Harmonic Loss: ML Optimization & Physical Dissipation

Updated 4 July 2026
  • Harmonic loss is a distance-based alternative to cross-entropy that forms class probabilities from the inverse distances to learned prototypes, ensuring finite convergence.
  • It extends to non-Euclidean metrics such as cosine, Bray–Curtis, and Mahalanobis, demonstrating improved performance in tasks like LiDAR detection, multi-label clinical coding, and weather forecasting.
  • In electrical engineering, harmonic loss quantifies energy dissipation caused by non-sinusoidal currents, guiding the design of transformers, cables, and superconducting devices.

Searching arXiv for papers using “harmonic loss” and closely related variants. Searching arXiv for distance-based harmonic loss in machine learning. “Harmonic loss” is a polysemous technical term. In contemporary machine learning, it most commonly denotes a distance-based alternative to cross-entropy in which class probabilities are formed from inverse powers of distances to learned class prototypes, yielding a finite convergence point and a class-center interpretation (Baek et al., 3 Feb 2025). In adjacent ML literature, the phrase also names task-specific objectives such as 3D Harmonic Loss for LiDAR detection, Segmented Harmonic Loss for long-tailed multi-label clinical coding, and a modified spherical-harmonic loss for weather forecasting (Zhang et al., 2022, Ray et al., 2023, Subich et al., 31 Jan 2025). In electrical engineering and applied electromagnetics, “harmonic loss” instead refers to physical dissipation induced by non-sinusoidal currents or fields, including transformer eddy-current losses, cable heating, and AC losses in coated conductors under higher harmonics (Peerzada et al., 2024, Furman et al., 2010). This suggests that the term is best understood as a family of domain-specific constructions unified by their relation to harmonic structure, rather than as a single universal definition.

1. Terminological scope and main uses

In the cited literature, “harmonic loss” appears in at least two broad forms: as an optimization objective and as a physical loss mechanism. The optimization sense includes the original Euclidean harmonic loss for classification, its non-Euclidean generalizations, and application-specific variants for detection, medical coding, and weather forecasting. The physical sense covers losses caused by harmonic or high-order harmonic content in electrical and superconducting systems (Baek et al., 3 Feb 2025, Miller-Golub et al., 10 Mar 2026, Zhang et al., 2022, Ray et al., 2023, Subich et al., 31 Jan 2025, Peerzada et al., 2024, Furman et al., 2010).

Domain Meaning of “harmonic loss” Representative source
Classification and LLM training Distance-based negative log-likelihood built from inverse powers of distances to prototypes (Baek et al., 3 Feb 2025)
Distance-layer generalization Harmonic loss with cosine, Bray–Curtis, Mahalanobis, and other metrics (Miller-Golub et al., 10 Mar 2026)
LiDAR 3D detection Dynamically coupled loss over classification, box regression, and orientation (Zhang et al., 2022)
Multi-label clinical coding Segmented harmonic focal loss with harmonic-mean reweighting across segments (Ray et al., 2023)
Weather forecasting Modified spherical-harmonic loss separating amplitude and decorrelation errors (Subich et al., 31 Jan 2025)
Power distribution and superconductors Energy dissipation caused by harmonic currents and fields (Peerzada et al., 2024, Furman et al., 2010)

A recurrent theme across these meanings is that harmonic structure is treated explicitly rather than indirectly. In machine learning, this appears as geometry in representation space or as scale-wise decomposition in spectral space. In electrical systems, it appears as integer multiples of a fundamental frequency that drive additional heating, distortion, and reliability degradation.

2. Distance-based harmonic loss in classification

The Euclidean harmonic loss was introduced as an alternative to standard cross-entropy for classification and language modeling. Let xRNx \in \mathbb{R}^N be the penultimate hidden representation, let W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V} be the unembedding matrix, and let cc be the true class label. Instead of inner-product logits, harmonic loss uses Euclidean distances

di=xwi2.d_i = \|x - w_i\|_2 .

With harmonic exponent n>0n>0, the “harmonic max” rule defines probabilities as

piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},

and the loss is

LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).

The construction is explicitly scale invariant under the joint rescaling (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i), because all distances scale by α|\alpha| and the common factor cancels in the normalized inverse-distance distribution (Baek et al., 3 Feb 2025).

Two theoretical properties are emphasized. First, harmonic loss has a finite convergence point: to make pcH1p_c^{\rm H}\to 1, it is sufficient that W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}0 while the other class distances remain bounded away from zero, so the optimum is attained at the finite point W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}1. Second, each W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}2 acquires a direct “class center” interpretation. This contrasts with cross-entropy, for which the quoted account states that achieving W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}3 requires W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}4, leading to unbounded norm growth in the late phase of training (Baek et al., 3 Feb 2025).

The empirical evaluation reported for the original formulation spans synthetic algorithmic tasks, MNIST, and GPT-2 small. On five synthetic tasks—In-Context Parallelogram Completion, Modular Addition mod 31, Equivalence Class mod 5, Genealogy in a binary tree, and Permutation Composition in W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}5—harmonic MLPs and Transformers are described as recovering the true 2D lattice, perfect circles, tree geometry, and coset clusters more faithfully than cross-entropy models. On MNIST with a single linear layer W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}6, both cross-entropy and harmonic loss achieved W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}7 test accuracy, but the harmonic weights resembled digit prototypes while the cross-entropy weights appeared noisy. On GPT-2 small trained on OpenWebText, the reported validation losses were W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}8 for cross-entropy and W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}9 for harmonic loss, with faster early convergence and smaller fluctuations for the harmonic model; the harmonic exponent used there was cc0 (Baek et al., 3 Feb 2025).

The interpretability claim is central rather than incidental. In the original presentation, algorithmic-task embeddings exhibit lattices, circles, trees, and cosets; MNIST weights become literal class prototypes; and token embeddings in GPT-2 yield lower “parallelogram loss” on twelve function-vector tasks. The stated implication is that mechanistic interpretability becomes easier when the output layer is trained with a distance-based objective rather than a scale-sensitive softmax over inner products (Baek et al., 3 Feb 2025).

3. Non-Euclidean harmonic loss and representation geometry

The Euclidean formulation was later generalized by replacing cc1 with an arbitrary nonnegative distance cc2. For a dataset cc3, backbone representations cc4, and learnable prototypes cc5, the generalized probabilities become

cc6

and the generalized harmonic loss is

cc7

This is also described as a distance-based softmin, with cc8 and cc9 (Miller-Golub et al., 10 Mar 2026).

Three concrete metric choices are highlighted. Cosine distance is

di=xwi2.d_i = \|x - w_i\|_2 .0

typically with di=xwi2.d_i = \|x - w_i\|_2 .1-normalization of di=xwi2.d_i = \|x - w_i\|_2 .2 and di=xwi2.d_i = \|x - w_i\|_2 .3. Bray–Curtis distance is

di=xwi2.d_i = \|x - w_i\|_2 .4

with a small di=xwi2.d_i = \|x - w_i\|_2 .5 for numerical stability. Mahalanobis distance is

di=xwi2.d_i = \|x - w_i\|_2 .6

with di=xwi2.d_i = \|x - w_i\|_2 .7 implemented as a learned full inverse covariance, a diagonal approximation, or a fixed precomputed covariance; a Cholesky parameterization with diagonal regularization is specifically recommended (Miller-Golub et al., 10 Mar 2026).

The theoretical motivations stated in the generalization study are continuity with the original Euclidean case rather than a break from it. For any di=xwi2.d_i = \|x - w_i\|_2 .8-homogeneous distance, harmonic probabilities are scale invariant under joint rescaling of representations and prototypes. Harmonic loss is also described as admitting finite global minimizers for the prototypes, and as encouraging prototypes to converge to geometric centers—means, medians, or other centers depending on the metric. The study further reports a PAC-Bayes margin bound in distance space and reiterates the empirical mitigation of grokking on synthetic tasks (Miller-Golub et al., 10 Mar 2026).

The empirical comparisons are framed as a three-way evaluation of performance, interpretability, and sustainability. On vision datasets including MNIST, CIFAR-10, CIFAR-100, Marathi Sign Language, and TinyImageNet, with architectures including MLP, small CNN, ResNet-50, and PVTv2-B0, cosine harmonic loss is reported as the most favorable trade-off: on ResNet-50 it yielded accuracy gains of di=xwi2.d_i = \|x - w_i\|_2 .9 to n>0n>00 relative to cross-entropy on CIFAR-10/100 and Marathi Sign, F1 gains of similar magnitude, and carbon-emission reductions of n>0n>01 to n>0n>02 per run on CNN/ResNet-50. Bray–Curtis and Mahalanobis yielded larger gains in explained variance and stronger dimensional concentration, with Mahalanobis reaching EVn>0n>03 gains up to n>0n>04 and PCA@90% in approximately n>0n>05–n>0n>06 dimensions on deep models, but at higher efficiency cost (Miller-Golub et al., 10 Mar 2026).

On LLMs trained on OpenWebText—BERT-base, GPT-small, QWEN2-0.5B, and GPT-2-2B—cosine-based harmonic losses are reported to improve validation perplexity by n>0n>07–n>0n>08 points relative to cross-entropy, increase gradient stability by n>0n>09–piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},0, increase effective rank by piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},1–piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},2, and increase PCA5 explained variance by piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},3–piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},4, while reducing emissions relative to cross-entropy and Euclidean heads in the summary account. By contrast, Mahalanobis and higher-order Minkowski variants are described as occasionally improving perplexity on GPT-small but being unstable on GPT-2, with larger emissions overhead (Miller-Golub et al., 10 Mar 2026).

4. Coupled-task and long-tail variants

The phrase “harmonic loss” also denotes specialized objectives that are not simple prototype-classification heads. In LiDAR-based 3D object detection, 3D Harmonic Loss is designed to close the gap between classification, localization, and orientation estimation so that no sub-task over-optimizes at the expense of the others. For a positive sample piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},5, with classification score piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},6, predicted box offsets piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},7, and orientation score piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},8, the loss is

piH=dinj=1Vdjn,p_i^{\rm H}=\frac{d_i^{-n}}{\sum_{j=1}^V d_j^{-n}},9

where

LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).0

and LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).1 in practice. The base losses remain focal loss for classification, Smooth-LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).2 over the seven box parameters for regression, and binary cross-entropy for orientation (Zhang et al., 2022).

The stated purpose is to address “overconfident but badly localized” boxes that survive NMS because classification and localization are optimized independently. The method is explicitly training-only: the original sum of losses is replaced, while voxelization, backbone, region proposal or pillar encoder, RoI pooling, heads, and post-processing remain identical. Reported KITTI validation improvements averaged LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).3 mAP in BEV at IoU LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).4, LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).5 mAP in 3D at IoU LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).6, LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).7 mAP in BEV at IoU LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).8, and LH=logpcH=log(dcnjdjn).L_{\rm H}=-\log p_c^{\rm H} = -\log \Bigl(\frac{d_c^{-n}}{\sum_j d_j^{-n}}\Bigr).9 mAP in 3D at IoU (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)0. AOS also increased by (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)1 for PointPillar and (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)2 for SECOND at IoU (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)3. Because inference speed is unchanged, PointPillar and Harmonic PointPillar both ran at (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)4 Hz on a single RTX 2080Ti, and TensorRT float16 deployment on an NVIDIA Jetson Xavier TX reached (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)5 Hz with less than (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)6 mAP drop relative to the 2080Ti result (Zhang et al., 2022).

In multi-label clinical coding, Segmented Harmonic Loss addresses extreme class imbalance by segmenting the ordered label set into contiguous frequency bands and training segment-specific models. For segment (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)7, with predicted probability (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)8 and target (x,wi)(αx,αwi)(x,w_i)\mapsto (\alpha x,\alpha w_i)9, the transformed probability is

α|\alpha|0

and the Segmented Harmonic Focal Loss is

α|\alpha|1

The dynamic factor α|\alpha|2 is the harmonic mean of relative occurrence rates of the sample’s positive segments versus segment α|\alpha|3, and the segmentation algorithm recursively carves off tail segments subject to the standard-deviation criterion

α|\alpha|4

with α|\alpha|5 in the reported experiments (Ray et al., 2023).

The experimental setting combines MIMIC-III and MIMIC-IV, then filters and denoises labels through an embedding-similarity procedure based on ClinicalBERT. After similarity filtering and thresholding, the dataset contains α|\alpha|6 samples and α|\alpha|7 codes. The base encoder is ClinicalBERT with α|\alpha|8M parameters; training uses AdamW with learning rate α|\alpha|9, mixed precision, a pcH1p_c^{\rm H}\to 10 split, and pcH1p_c^{\rm H}\to 11K steps per segment model. On the test set, SH-Focal-BERT achieved total micro-F1 of pcH1p_c^{\rm H}\to 12, with particularly large gains in the tail segment: pcH1p_c^{\rm H}\to 13 versus pcH1p_c^{\rm H}\to 14 for BCE-BERT, pcH1p_c^{\rm H}\to 15 for Focal-BERT, and pcH1p_c^{\rm H}\to 16 for CB-Focal-BERT. The same report states that overall micro-F1 moves from approximately pcH1p_c^{\rm H}\to 17 in prior SOTA to approximately pcH1p_c^{\rm H}\to 18, and that SH-Focal-BERT outperforms CAML, LAAT, RAC, EffectiveCAN, Discnet+RE, and MSMN+LongFormer by more than ten F1 points (Ray et al., 2023).

5. Spherical-harmonic formulations in weather forecasting

A different use of the term arises in data-driven weather forecasting, where a modified spherical-harmonic loss is proposed to correct the “double penalty” induced by grid-point mean squared error. For a scalar field pcH1p_c^{\rm H}\to 19 on the sphere with spherical-harmonic coefficients W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}00, Parseval’s theorem yields

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}01

Grouping by total wavenumber W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}02, with

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}03

and

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}04

the standard MSE becomes

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}05

The cited derivation argues that, because fine scales have lower coherence W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}06, the MSE optimum shrinks the forecast spectrum by the factor W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}07, thereby smoothing fine structure (Subich et al., 31 Jan 2025).

The proposed remedy separates amplitude error from decorrelation error. The amplitude term is

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}08

and the decorrelation term is

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}09

The final adjusted loss is

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}10

It is described as a simple, parameter-free, drop-in replacement for grid-point MSE in GraphCast-style training (Subich et al., 31 Jan 2025).

The reported effects are large and explicitly quantified. Fine-tuning GraphCast with this loss increases effective resolution from W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}11 km to W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}12 km at 5-day lead. CRPS is reduced by W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}13–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}14 across key variables, while the eRMSE of the ensemble mean is essentially unchanged and the spread/error ratio improves by W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}15–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}16 at medium leads. For tropical cyclones at 5-day lead, the mean maximum wind-speed bias changes from approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}17 m/s in the control model to approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}18 m/s in the AMSE model, mean central-pressure error is reduced by approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}19 hPa, and position error remains approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}20 km. For surface wind-speed extremes, the 98th percentile of W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}21 m wind increases from approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}22 m/s in the control to approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}23 m/s, versus observations near W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}24 m/s (Subich et al., 31 Jan 2025).

This formulation differs fundamentally from the prototype-based harmonic losses of classification. It does not compare an example against learned class centers; instead it decomposes a field-level error into spectral-amplitude and scale-dependent coherence terms. The commonality is structural: harmonic content is made explicit in the objective, rather than being left implicit in a pointwise loss.

6. Harmonic loss as physical dissipation under non-sinusoidal excitation

In electrical engineering, “harmonic loss” refers to real power dissipation and heating caused by harmonic content in currents and voltages. In modern distribution systems, non-linear household loads such as desktop PCs, laptop chargers, VFD-driven HVAC/washer/dryer, PV inverters, and EV chargers draw non-sinusoidal currents and inject integer multiples of W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}25 Hz into the feeder. The reported impacts include increased eddy-current and hysteresis heating in transformer windings, increased W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}26 losses and skin/proximity effects in cables, conductor overheating, reduced equipment lifetime and reliability, misoperations of protective devices, and voltage distortion at the PCC (Peerzada et al., 2024).

The cited distribution-system study uses standard current THD,

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}27

and a transformer harmonic-driven eddy-current loss model,

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}28

In the study this is specialized to

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}29

where W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}30, W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}31 is harmonic order, and W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}32 is RMS current at order W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}33. Nonlinear loads are modeled in PSCAD/EMTdc, spectra are extracted by FFT up to approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}34 Hz, and a time-series harmonic analysis is run in OpenDSS on a modified IEEE 34 bus feeder with W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}35-minute resolution over W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}36 h (Peerzada et al., 2024).

Three scenarios are summarized. Scenario 1, consisting of VFD plus desktop plus laptop, exhibits dominant harmonics up to the W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}37 and THD of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}38. Scenario 2, adding PV, introduces pronounced W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}39, W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}40, and W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}41 harmonics in the approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}42 kHz band, aligned with a feeder resonance peak. Scenario 3, adding EV, exhibits a spread of mid-order harmonics and THD of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}43. At the PCC, Scenario 2 has daily THD peaks of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}44–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}45 and average THD of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}46, while Scenarios 1 and 3 remain below W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}47. The same resonance near W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}48 kHz drives peak transformer harmonic eddy loss of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}49 kW in Scenario 2, or approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}50 of W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}51 kVA, with average loss of approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}52 kW; Scenarios 1 and 3 remain below W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}53 kW. Harmonics above the W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}54 order contribute approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}55 of W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}56 in Scenario 2 and approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}57 of THD (Peerzada et al., 2024).

The same study extends to a sequential-injection analysis. Nonlinear loads placed at buses with local resonance around W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}58–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}59 kHz raise THD at the substation bus from W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}60 with no sources to more than W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}61 with six such injections. The critical orders are W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}62–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}63, coinciding with resonance peaks of many feeder buses; the IEEE 519/EN 50160 THD limit of W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}64 at the substation is exceeded when multiple high-order sources align with resonance. The planning actions listed include driving-point impedance scans from W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}65 Hz to W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}66 kHz, limiting distributed PV/EV installations at buses with nearby resonance, de-tuned capacitor banks or damping reactors, passive filters tuned to the W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}67–W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}68 orders, active power-electronic filters at the PCC of PV/EV inverters, staggered EV charging start times, upgraded transformer designs, and network impedance monitoring with adaptive capacitor switching (Peerzada et al., 2024).

A related superconducting setting analyzes AC losses in coated conductors under non-sinusoidal currents and magnetic fields within the Bean critical-state model. Transport current and applied field are written as

W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}69

with typically W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}70 and W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}71. Under monotonic half-cycles, hysteresis losses depend on extrema rather than waveform details. For a “worst-case” third harmonic with W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}72 and W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}73, the reported increase in superconducting hysteresis loss is approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}74 at low current and rises to approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}75 as W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}76. In the normal-metal parts, the same W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}77 third harmonic raises eddy-current losses by approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}78 at low currents and by approximately W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}79 near W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}80. The cited conclusion is that even small higher harmonics can produce tens-of-percent increases in losses, much larger than in conventional conductors, and therefore must be accounted for in the operating regimes of superconducting devices (Furman et al., 2010).

Across these engineering uses, harmonic loss is not a surrogate objective but a measurable dissipation process. The common mathematical pattern is frequency decomposition: either by harmonic order W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}81, or by explicit non-sinusoidal components W=[w1,,wV]RN×VW=[w_1,\dots,w_V] \in \mathbb{R}^{N\times V}82. The practical emphasis is consequently on distortion metrics, resonance, thermal stress, and mitigation rather than on statistical optimization.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Harmonic Loss.