-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathREADME.txt
executable file
·31 lines (31 loc) · 1.8 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
% =================================================================================================
% Computation of core geometry, reluctance, inductance, losses, etc.
% =================================================================================================
%
% Define classes for:
% - the magnetic core material parameter
% - the type of magnetic component (transformer, inductor, etc.)
% - the geometry of the core
% - the core losses
% - the reluctance method for solving magnetic circuits
%
% =================================================================================================
%
% Folder structure:
% - core_example - test scripts
% - core_lib - general methods for core computation (core material and reluctance model, etc.)
% - core_class.m - main class for the computation
% - DATA_STRUCT.txt - documentation of the used data structures
% - README.txt - this file
%
% =================================================================================================
%
% Getting started:
% - core_example/test_core_material.m - test of the computation of the material parameters (mu, steinmetz, losses, etc.)
% - core_example/test_reluctance_method.m - test of the reluctance solver (reluctance, flux, inductance, etc.)
% - core_example/test_core_inductor.m - complete computation of an inductor with C and E core (volume, mass, circuit, losses, etc.)
% - core_example/test_core_transformer.m - complete computation of a transformer with C and E core (volume, mass, circuit, losses, etc.)
%
% =================================================================================================
% (c) 2021, T. Guillod, BSD License
% =================================================================================================