This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
start [2021/09/17 20:20] stanzurek [Currents] |
start [2025/04/29 10:39] (current) stanzurek |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Start ====== | ====== Start ====== | ||
| - | This website is devoted to gathering extended documentation on the [[http:// | + | This website is devoted to gathering extended documentation on the [[http:// |
| The **// | The **// | ||
| Line 12: | Line 12: | ||
| ====== FEMM general settings ====== | ====== FEMM general settings ====== | ||
| * [[Colours of the legend]] (" | * [[Colours of the legend]] (" | ||
| + | * [[Symmetry and boundary conditions]] (Dirichlet and Neumann conditions) | ||
| ====== MAGNETICS ====== | ====== MAGNETICS ====== | ||
| - | Don't know how to do something in FEMM? First, read through the manual. But perhaps you can find some useful tricks and tutorials below | + | Don't know how to do something in FEMM? First, read through the manual. But perhaps you can find some useful tricks and tutorials below. |
| + | |||
| + | ==== Simple tutorial ==== | ||
| * [[Simple MAGNETIC simulation in FEMM - step-by-step tutorial]] | * [[Simple MAGNETIC simulation in FEMM - step-by-step tutorial]] | ||
| Line 28: | Line 30: | ||
| * [[Loss angle]] | * [[Loss angle]] | ||
| ==== Analyse ===== | ==== Analyse ===== | ||
| + | * [[Power loss in windings]] | ||
| ===== Magnetics post-process ====== | ===== Magnetics post-process ====== | ||
| ==== Currents ==== | ==== Currents ==== | ||
| * [[Measure local current]] | * [[Measure local current]] | ||
| - | ==== Magnetic coupling factor | + | ==== Inductance |
| - | LUA script for calculating magnetic coupling coefficient between two windings. The windings have to be set up as described in the comments in the code below: | + | |
| - | + | ||
| - | < | + | |
| - | -- Short Lua script for calculating coupling factor of two coils. | + | |
| - | -- It presumes the problem is already defined in FEMM, and | + | |
| - | -- that the two windings are defined by circuits named " | + | |
| - | -- The problem may be DC or AC at a frequency of your choice. | + | |
| - | -- Intended for circuits with series property. | + | |
| - | -- Execute with the FEMM menu item File/ | + | |
| - | clearconsole() | + | |
| - | showconsole() | + | |
| - | -- Simulate first with only secondary current: | + | |
| - | mi_modifycircprop(" | + | |
| - | mi_modifycircprop(" | + | |
| - | mi_analyze() | + | |
| - | mi_loadsolution() | + | |
| - | print(mo_getcircuitproperties(" | + | |
| - | print(mo_getcircuitproperties(" | + | |
| - | i, Vsec, Lsec = mo_getcircuitproperties(" | + | |
| - | i, Vpri_sec, Lpri_sec = mo_getcircuitproperties(" | + | |
| - | -- Simulate next with only primary current: | + | |
| - | mi_modifycircprop(" | + | |
| - | mi_modifycircprop(" | + | |
| - | mi_analyze() | + | |
| - | mi_loadsolution() | + | |
| - | print(mo_getcircuitproperties(" | + | |
| - | print(mo_getcircuitproperties(" | + | |
| - | i, Vsec_pri, Lsec_pri = mo_getcircuitproperties(" | + | |
| - | i, Vpri, Lpri = mo_getcircuitproperties(" | + | |
| - | -- Calculate and print coupling factor: | + | |
| - | coupling_factor = sqrt(Lsec_pri * Lpri_sec / (Lpri * Lsec)) | + | |
| - | print(" | + | |
| - | </ | + | |
| + | ==== Real and Imaginary values of L and R ==== | ||
| + | * [[Real and Imaginary values of L and R]] | ||
| ====== ELECTROSTATICS ====== | ====== ELECTROSTATICS ====== | ||
| + | ==== Simple tutorial ==== | ||
| * [[Simple ELECTROSTATIC simulation in FEMM - step-by-step tutorial]] | * [[Simple ELECTROSTATIC simulation in FEMM - step-by-step tutorial]] | ||
| ====== THERMAL ====== | ====== THERMAL ====== | ||
| + | ==== Simple tutorial ==== | ||
| + | * [[Simple HEAT FLOW simulation in FEMM - step-by-step tutorial]] | ||
| + | ==== Combined radiation and convection boundaries ==== | ||
| + | * [[Combined radiation and convection boundaries]] | ||
| ====== CURRENT FLOW ====== | ====== CURRENT FLOW ====== | ||
| + | ==== Simple tutorial ==== | ||
| + | * [[Simple CURRENT FLOW simulation in FEMM - step-by-step tutorial]] | ||
| ====== LUA scripting ====== | ====== LUA scripting ====== | ||
| + | |||
| + | Reference manual for Lua 4.0: http:// | ||
| + | |||
| * [[LUA scripting tips]] | * [[LUA scripting tips]] | ||
| + | * [[LUA with simple polar co-ordinates]] | ||
| + | * [[LUA script for calculating magnetic coupling coefficient k]] | ||