Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 1.92 KB

EM_FHEquiv.md

File metadata and controls

82 lines (45 loc) · 1.92 KB


EM FHEquiv

Description

The FHEquiv tool short-circuits two FHNode objects.

FastHenry FHEquiv

Usage

The FHEquiv object is based on the two existing FHNodes that it will short-circuit.

  1. Select two FHNode objects
  2. Press the EM FHEquiv button, or press E then E keys.

Remarks

  • If you need to short-circuit multiple nodes, just create multiple FHEquiv nodes. You don't need a full mesh of FHEquiv nodes, as of course if node1 is shorted with node2, and node2 is shorted with node3, also node1 will result shorted with node3.

Properties

  • Node1: the first FHNode to short-circuit

  • Node2: the second FHNode to short-circuit

Scripting

See also:

FreeCAD Scripting Basics.

The FHEquiv object can be used in macros and from the Python console by using the following function:

equiv = makeFHEquiv(node1=None,node2=None,name='FHEquiv')
  • Creates a FHEquiv object.

  • node1is the first node FHNode object to short-circuit.

  • node2is the second node FHNode object to short-circuit.

  • nameis the name of the object

Example:

import FreeCAD, EM

fhnode1 = EM.makeFHNode(X=1.0,Y=0,Z=0)
fhnode2 = EM.makeFHNode(X=0,Y=1.0,Z=0)

fhequiv = EM.makeFHEquiv(fhnode1, fhnode2)

{{EM Tools navi

}}


documentation index > EM FHEquiv