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, 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.
Deprecated Bertotti model | Modified Bertotti model | ||||
---|---|---|---|---|---|
Iron Losses Terms | Coefficient | Exponent of the magnetic flux density | Exponent of the frequency | Coefficient | Exponent |
Hysteresis | |||||
Classical | (conductivity) (thickness of the electrical steel sheets) |
(only in Steady State AC) |
|||
Excess | (only in Steady State AC) |
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.
- , the frequency exponent of the hysteresis term, must be equal to . Remark that this was the default value proposed by Flux.
- , the frequency exponent of the classical term (only required in Steady State AC application), must be equal to , the magnetic flux density exponent of the classical term.
- , the frequency exponent of the excess term (only required in Steady State AC application) must be equal to , 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 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 is equal to
- the exponent of the modified classical term is equal to
- the exponent of the modified excess term is equal to
Conversion of coefficients in Steady State AC application
In the case of a Steady State AC Magnetic application, coefficients of the Modified Bertotti model are computed from the coefficients of the deprecated model as follows:
- the coefficient of the modified hysteresis term must be equal to , the corresponding coefficient of the deprecated model
- the coefficient of the modified classical term
is given by the formula:
in which σ and 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 must be equal to the corresponding coefficient of the deprecated model multiplied by , i.e.,
Conversion of coefficients in Transient application
In the case of a Transient Magnetic application, the coefficients of the Modified Bertotti model are converted as follows:
- the coefficient of the hysteresis term must be equal to , the corresponding coefficient of the deprecated model
- the coefficients and (the coefficients of the classical and excess terms, respectively) are obtained through the following formulas:
In these expressions, and are respectively the parameters of the deprecated model corresponding to the conductivity and the thickness of the electrical steel sheets. Moreover, is the coefficient of the excess term of the deprecated model and and are respectively the exponents for the classical and excess terms in the deprecated model.
Finally, is a function depending on the exponent value used in the deprecated model:
Being in the most common applications and respectively equal to and (the default values proposed by Flux), the evaluation of and lead to the well-known values of and . Consequently, the formulas for coefficients and become:
Evaluating the integral function 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., and ), converting the deprecated Bertotti model coefficients to the current Modified Bertotti model requires evaluating the integral function 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
for
:%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% 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);