Core Loss Curve Fitting

バージョン 1.0.0.0 (4.04 KB) 作成者: Junfei Tang
Core Loss Curve Fitting
ダウンロード: 369
更新 2016/5/5

ライセンスの表示

Calculate the iron-core loss coefficients k_h, k_e and k_c, which are defined as follows:
% f is the frequency [Hz]
% B_m is the peak flux density [T]
% K_h is the coefficient of hysteresis loss [W/kg]
% K_c is the coefficient of classical eddy current loss [W/kg]
% K_e is the coefficient of excess eddy current loss [W/kg]
% M is the mass [kg]

% Hysteresis Loss [W]
P_h = K_h * f .* B_m.^2 * M;

% Classical Eddy Current Loss [W]
P_c = K_c * (f .* B_m).^2 * M;

% Excess Eddy Current Loss [W]
P_e = K_e * (f .* B_m).^1.5 * M;

% Total Core Loss [W]
P_core = P_h + P_c + P_e;

引用

Junfei Tang (2024). Core Loss Curve Fitting (https://www.mathworks.com/matlabcentral/fileexchange/56941-core-loss-curve-fitting), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2015b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersCurve Fitting Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

The description is updated.