How to convert deprecated Bertotti into Modified Bertotti parameters

The deprecated Bertotti model for the evaluation of iron losses is no longer available since Flux 2023. This How-to document presents the guidelines for converting a parameter set of that model into equivalent parameters of the improved, currently available Modified Bertotti model.

Introduction

Previous versions of Flux provided models for computation of iron losses that were labeled as “deprecated” (Bertotti and LS). In Flux 2023, these legacy models ceased to be available through the GUI and are now considered completely superseded.

The legacy models were less accurate and led to longer computation times when compared with their corresponding newer versions (available since Flux 2018). Moreover, the deprecated Bertotti model for Transient applications was not completely coherent with its Steady State AC application counterpart and suffered from a lack of accuracy in the computation of the hysteresis term under certain circumstances (differences of 2 to 4% on typical cases).

The current implementation of the Bertotti model (referred to as the “Modified” Bertotti model in Flux) overcomes these limitations and reduces the number of parameters to be identified and that the user needs to provide for the computation of iron losses.

As a reminder, the Bertotti loss density is the sum of three terms (i.e., the hysteresis, classical and excess loss terms) shown in the equation below:



In this equation, k F is the stacking factor of the lamination. The other symbols in the equation are clarified in Table 1 below. This table also brings the equivalent notation employed in the deprecated version of the model in Flux.

Table 1. Notation for the parameters of the deprecated and Modified Bertotti models in Flux.
  Deprecated Bertotti model Modified Bertotti model
Iron Losses Terms Coefficient Exponent of the magnetic flux density Exponent of the frequency Coefficient Exponent
Hysteresis k h α h βh k 1 α 1
Classical

σ (conductivity)

d (thickness of the electrical steel sheets)
α c

β c (only in Steady State AC)

k 2 α 2
Excess k e α e β e (only in Steady State AC) k 3 α 3

This document is dedicated to users who still have projects based on the deprecated Bertotti model and intend to convert the parameters describing their iron losses models (coefficients and exponents) to the Modified Bertotti model, while keeping similar results (except for the hysteresis term, for which the computation is more accurate with the Modified Bertotti model).

Conditions required to convert the parameters of the legacy deprecated Bertotti model to the current Modified Bertotti model

The conversion to the Modified Bertotti model is possible under assumptions that are fortunately verified in the most frequent cases of applications.

More specifically, the values of the frequency exponents β used in the deprecated Bertotti model must satisfy the following conditions:
  • β h , the frequency exponent of the hysteresis term, must be equal to 1.0 . Remark that this was the default value proposed by Flux.
  • β c , the frequency exponent of the classical term (only required in Steady State AC application), must be equal to α c , the magnetic flux density exponent of the classical term.
  • β e , the frequency exponent of the excess term (only required in Steady State AC application) must be equal to α e , the magnetic flux density exponent of the excess term.

Conversion of exponents (Steady State AC and Transient Magnetic)

With the previous conditions verified, the values of the exponents α i   =   1 ,   2 ,   3 of the current Modified Bertotti are obtained from their counterparts of the deprecated model through the following identities:

  • the exponent of the modified hysteresis term α 1 is equal to α h
  • the exponent of the modified classical term α 2 is equal to α c
  • the exponent of the modified excess term α 3 is equal to α e

Conversion of coefficients in Steady State AC application

In the case of a Steady State AC Magnetic application, coefficients k i   =   1 ,   2 ,   3 of the Modified Bertotti model are computed from the coefficients of the deprecated model as follows:

  • the coefficient of the modified hysteresis term k 1 must be equal to k h , the corresponding coefficient of the deprecated model

  • the coefficient of the modified classical term k 2 is given by the formula:

    in which σ and d are respectively the parameters of the deprecated model corresponding to the conductivity and the thickness of the electrical steel sheets;

  • the coefficient for the modified excess term k 3 must be equal to the corresponding coefficient of the deprecated model multiplied by 8.763 , i.e.,

Conversion of coefficients in Transient application

In the case of a Transient Magnetic application, the coefficients k i   =   1 ,   2 ,   3 of the Modified Bertotti model are converted as follows:

  • the coefficient of the hysteresis term k 1 must be equal to k h , the corresponding coefficient of the deprecated model

  • the coefficients k 2 and k 3 (the coefficients of the classical and excess terms, respectively) are obtained through the following formulas:

In these expressions, σ and d are respectively the parameters of the deprecated model corresponding to the conductivity and the thickness of the electrical steel sheets. Moreover, k e is the coefficient of the excess term of the deprecated model and α c and α e are respectively the exponents for the classical and excess terms in the deprecated model.

Finally, g α is a function depending on the exponent value α used in the deprecated model:

Being in the most common applications α c and α e respectively equal to 2.0 and 1.5 (the default values proposed by Flux), the evaluation of g2.0 and g1.5 lead to the well-known values of 2 π 2 and 8.763 . Consequently, the formulas for coefficients k 2 and k 3 become:

Evaluating the integral function g α in Compose

In the exceptional cases of Transient Magnetic applications in which the exponents of the classical and excess terms of the deprecated model were adjusted to non-default values (i.e., α c 2.0 and α e 1.5 ), converting the deprecated Bertotti model coefficients to the current Modified Bertotti model requires evaluating the integral function g α provided above.

This function may be evaluated numerically with the help of Compose. The script below contains a possible implementation for this function in OML language:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%%  G_function(alpha, n): evaluates the function g(alpha)
%%
%%  Inputs:
%%  - alpha: exponent in the deprecated Bertotti model.
%%  - n: the number of equally spaced discretization points in interval [0 pi/2].
%%
%%  Output:	
%%  - g: the conversion factor g(alpha).
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function g = G_function(alpha, n)
	
%%%%% Vector storing the integration interval [0 , pi/2 ], discretized by n points
theta = linspace(0,pi/2,n);

%%%%% Vector storing the integrand cos(theta)^alpha evaluated on the discretized integration interval 
integrand = cos(theta).^alpha;		
	
%%%%% Numerically integrates the integrand along the interval [0 pi/2]
integral  = trapz(theta,integrand);	
	
%%%%% Scales the previouly evaluated integral to obtain g(alpha)
g = (2*pi).^(alpha-1) .* 4.0 .* integral;

end
The example below uses the previous Compose function to evaluate g α for α = 1.5 :
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% Example evaluating g(1.5) with previously defined function "G_function"
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

clear;
close all;
clc;

%%%%% Exponent of the deprecated Bertotti model
Alpha = 1.5; 

%%%%% Number of discretization points in the integration interval for function g(alpha)
N = 10000;

%%%%% Evaluates the conversion factor for the exponent 
G = G_function(Alpha,N);

%%%%% Displays the result in the standard output 
OutputString = sprintf('The conversion factor for alpha = %.3f is g(%.3f) = %.3f.', Alpha, Alpha, G);
printf(OutputString);