EM Workbench: Difference between revisions

From FreeCAD Documentation
(The EM Workbench is an external workbench that can be installed from the AddonManager.)
mNo edit summary
 
(14 intermediate revisions by 7 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
<translate>
[[Image:EMWorkbench.svg|64px]]

<!--T:35-->
[[File:EMWorkbench.svg|thumb|128px|EM Workbench icon]]

</translate>
{{TOCright}}
<translate>
<translate>


Line 6: Line 12:


<!--T:2-->
<!--T:2-->
The ElectroMagnetic (EM) Workbench provides the CAD front-end interface to some open source free solvers. At present it supports the 3D magnetoquasistatic impedance solver [https://www.fastfieldsolvers.com/software.htm#fasthenry2 FastHenry] (i.e. inductance and resistance extraction at "low" frequencies). Support for the 3D electrostatic capacitance solver [https://www.fastfieldsolvers.com/software.htm#fastercap FasterCap] is ongoing.
The EM (ElectroMagnetic) Workbench provides the CAD front-end interface to some open source free solvers. At present it supports the 3D magnetoquasistatic impedance solver [https://www.fastfieldsolvers.com/software.htm#fasthenry2 FastHenry] (i.e. inductance and resistance extraction at "low" frequencies). Support for the 3D electrostatic capacitance solver [https://www.fastfieldsolvers.com/software.htm#fastercap FasterCap] is ongoing.

<!--T:3-->
The [[EM Workbench]] is an [[external workbenches|external workbench]], that can be installed from the [[AddonManager]].


<!--T:4-->
<!--T:4-->
{{TOCright}}
[[Image:Screenshot_EM_window.png|600px]]
[[Image:Screenshot_EM_window.png|600px]]


== Installation == <!--T:5-->
== Installation == <!--T:5-->


<!--T:6-->
<!--T:3-->
The [[EM_Workbench|EM Workbench]] is an [[External_workbenches|external workbench]], that can be installed from the FreeCAD [[Image:AddonManager.svg|24px]] [[Std_AddonMgr|Addon Manager]]. This can be done via the {{MenuCommand|Tools → Addon Manager}} menu.
At present, the EM Workbench must be manually installed. See the instructions in the README at the [https://github.com/ediloren/EM-Workbench-for-FreeCAD EM Workbench GihHub page].


<!--T:7-->
<!--T:7-->
Line 61: Line 63:


<!--T:19-->
<!--T:19-->
At present, FasterCap is supported via some Macros in the Export_mesh.py file available in the ElectroMagnetic Workbench GitHub source code.
At present, FasterCap is supported via some Macros in the {{FileName|Export_mesh.py}} file available in the [https://github.com/ediloren/EM-Workbench-for-FreeCAD ElectroMagnetic Workbench GitHub source code].


== API == <!--T:20-->
== API == <!--T:20-->


<!--T:21-->
<!--T:21-->
The EM tools can be used in [[macros]] and from the [[Python]] console by using the EM API.
The EM tools can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the EM API.


== Tutorials == <!--T:22-->
== Tutorials == <!--T:22-->
Line 81: Line 83:
* [https://www.youtube.com/watch?v=slsLdLoF2OI FreeCAD ElectroMagnetic WorkBench tutorial: using the path object, part 2]
* [https://www.youtube.com/watch?v=slsLdLoF2OI FreeCAD ElectroMagnetic WorkBench tutorial: using the path object, part 2]


== External workbenches == <!--T:29-->

<!--T:30-->
FreeCAD workbenches are easy to program in [[Python|Python]], there are therefore many people developing additional workbenches outside of the FreeCAD main developers.

<!--T:31-->
The [[external workbenches|external workbenches]] page has some information and tutorials on some of them, and the [https://github.com/FreeCAD/FreeCAD-addons FreeCAD Addons] project aims at gathering them and making them easily installable from within FreeCAD.

<!--T:32-->
New workbenches are in development, stay tuned!

<!--T:28-->
{{Userdocnavi}}

<!--T:25-->
[[Category:User Documentation]]

<!--T:26-->
[[Category:Addons]]


<!--T:27-->
[[Category:External Workbenches]]
</translate>
</translate>
{{EM Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
[[Category:External Workbenches{{#translation:}}]]

Latest revision as of 19:30, 20 November 2021

Other languages:
EM Workbench icon

Introduction

The EM (ElectroMagnetic) Workbench provides the CAD front-end interface to some open source free solvers. At present it supports the 3D magnetoquasistatic impedance solver FastHenry (i.e. inductance and resistance extraction at "low" frequencies). Support for the 3D electrostatic capacitance solver FasterCap is ongoing.

Installation

The EM Workbench is an external workbench, that can be installed from the FreeCAD Addon Manager. This can be done via the Tools → Addon Manager menu.

The electromagnetic solvers FastHenry2 and FasterCap must be installed separately. Their binary codes as well as the sources are freely available from FastFieldSolvers.

Usage

FastHenry

FastHenry is a software for computing the frequency-dependant self and mutual inductances and resistances of a generic tridimensional conductive structure, in the magnetoquasistatic approximation. It can also generate Spice-compatible, multiple-frequency equivalent-circuit models.

Knowledge of FastHenry is a pre-condition for the proficient usage of the ElectroMagnetic Workbench for FastHenry. We suggest you to read the original FastHenry User's manual and play a bit with the sample files that are provided with the installation.

FasterCap

FasterCap is a powerful three- and two-dimensional capacitance extraction program.

Knowledge of FasterCap is a pre-condition for the proficient usage of the ElectroMagnetic Workbench for FasterCap. We suggest you to read the original FasterCap help file and play a bit with the sample files that are provided with the installation.

FastHenry Tools

These are tools used to interface with FastHenry:

  • FHNode: Creates a FastHenry Node object
  • FHSegment: Creates a FastHenry Segment object
  • FHPath: Creates a FastHenry Path object
  • FHPlane: Creates a FastHenry uniform conductive Plane object
  • FHPlaneHole: Creates a FastHenry uniform conductive plane Hole object
  • FHPlaneAddRemoveNodeHole: Add or Remove a Node or a Hole from/to a conductive plane
  • FHEquiv: Creates a FastHenry node Equivalence object
  • FHPort: Creates a FastHenry Port object
  • FHSolver: Creates a FastHenry Solver object
  • FHInputFIle: Creates a FastHenry Input File

FasterCap Tools

At present, FasterCap is supported via some Macros in the Export_mesh.py file available in the ElectroMagnetic Workbench GitHub source code.

API

The EM tools can be used in macros and from the Python console by using the EM API.

Tutorials

Some video tutorials are available for the EM Workbench beta versions: