Basic Files

This commit is contained in:
beri-he
2025-05-29 19:19:47 +02:00
parent 0a1aa70637
commit b0c5b22c30
73 changed files with 198857 additions and 0 deletions

View File

@ -0,0 +1,15 @@
clear all
close all
data = readtable("Losses_PC95_100kHz_60C.csv");
B = data.x;
P = data.y;
figure
loglog(B*1e3, P);
grid minor
xlabel("B_{max} in mT")
ylabel("Core Losses in kW/m^3")
title("Core Losses")