EM Workbench/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

[[Image:EMWorkbench.svg|64px]]
[[File:EMWorkbench.svg|thumb|128px|EM Workbench icon]]

{{TOCright}}


==Introduzione==
==Introduzione==


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.


<div class="mw-translate-fuzzy">
Il workbench EM è un [[External_workbenches/it|addon per FreeCAD]], che può essere installato su richiesta. Non fa parte dell'installazione standard di FreeCAD.
</div>

{{TOCright}}
[[Image:Screenshot_EM_window.png|600px]]
[[Image:Screenshot_EM_window.png|600px]]


== Installazione ==
== Installazione ==


<div class="mw-translate-fuzzy">
Al momento, EM Workbench deve essere installato manualmente. Vedere le istruzioni nel README alla pagina [https://github.com/ediloren/EM-Workbench-for-FreeCAD EM Workbench GihHub].
[[EM Workbench/it|EM]] è un [[external workbenches/it|ambiente esterno]], che può essere installato da [[Image:AddonManager.svg|24px]] [[Std_AddonMgr/it|Addon Manager]]. Questo può essere fatto tramite il menu {{MenuCommand|Strumenti → Addon Manager}}.
</div>


I risolutori elettromagnetici FastHenry2 e FasterCap devono essere installati separatamente. I loro codici binari e i sorgenti sono liberamente disponibili in [https://www.fastfieldsolvers.com FastFieldSolvers].
I risolutori elettromagnetici FastHenry2 e FasterCap devono essere installati separatamente. I loro codici binari e i sorgenti sono liberamente disponibili in [https://www.fastfieldsolvers.com FastFieldSolvers].
Line 50: Line 50:
== Strumenti di FasterCap ==
== Strumenti di FasterCap ==


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 ==
== API ==


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.


== Tutorial ==
== Tutorial ==
Line 67: Line 67:
* [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 ==

FreeCAD workbenches are easy to program in [[Python|Python]], there are therefore many people developing additional workbenches outside of the FreeCAD main developers.

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.

New workbenches are in development, stay tuned!

{{Userdocnavi}}

[[Category:User Documentation/it]]

[[Category:Addons/it]]


{{EM Tools navi{{#translation:}}}}
[[Category:External Workbenches/it]]
{{Userdocnavi{{#translation:}}}}
[[Category:External Workbenches{{#translation:}}]]

Latest revision as of 19:30, 20 November 2021

Other languages:
EM Workbench icon

Introduzione

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.

Installazione

EM è un ambiente esterno, che può essere installato da Addon Manager. Questo può essere fatto tramite il menu Strumenti → Addon Manager.

I risolutori elettromagnetici FastHenry2 e FasterCap devono essere installati separatamente. I loro codici binari e i sorgenti sono liberamente disponibili in FastFieldSolvers.

Utilizzo

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.

Strumenti di FastHenry

Questi sono gli strumenti utilizzati per interfacciarsi con FastHenry:

  • FHNode: Crea un oggetto FastHenry Node
  • FHSegment: Crea un oggetto FastHenry Segment
  • FHPath: Crea un oggetto FastHenry Path
  • FHPlane: Crea un oggetto FastHenry uniform conductive Plane
  • FHPlaneHole: Crea un oggetto FastHenry uniform conductive plane Hole
  • FHPlaneAddRemoveNodeHole: Aggiunge o Rimuove un Node o un Hole da/a un piano conduttivo
  • FHEquiv: Crea un oggetto FastHenry node Equivalence
  • FHPort: Crea un oggetto FastHenry Port
  • FHSolver: Crea un oggetto FastHenry Solver
  • FHInputFIle: Crea un file FastHenry Input

Strumenti di FasterCap

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.

Tutorial

Per le versioni beta di EM Workbench sono disponibili alcune esercitazioni video :