|
Menu location |
---|
Sketch → Sketcher Constraints → Constrain refraction (Snell's law) |
Workbenches |
Sketcher, PartDesign |
Default shortcut |
None |
See also |
None |
Constrains two lines to follow the law of refraction of light as it penetrates through an interface, where two materials of different refraction indices meet. See Snell's law on Wikipedia for more info.
Note that there are several helper constraints smart-added (point-on-object, coincident), and they can be deleted if they cause redundancy, or added manually if they were not added automatically. For the actual Snell's law constraint, the endpoints of lines must coincide and lie on the interface, otherwise the behavior is undefined.
Using polyline tool, it is possible to speedup drawing of rays of light. In this case, one can select two coincident endpoints by box selection.
The constraints can be created from macros and from the python console by using the following function:
Sketch.addConstraint(Sketcher.Constraint('SnellsLaw',line1,pointpos1,line2,pointpos2,interface,n2byn1))
where:
Example:
from Sketcher import * from Part import * from FreeCAD import * StartPoint = 1 EndPoint = 2 MiddlePoint = 3 f = App.activeDocument().addObject("Sketcher::SketchObject","Sketch") # add geometry to the sketch icir = f.addGeometry(Part.Circle(App.Vector(-547.612366,227.479736,0),App.Vector(0,0,1),68.161979)) iline1 = f.addGeometry(Part.Line(App.Vector(-667.331726,244.127090,0),App.Vector(-604.284241,269.275238,0))) iline2 = f.addGeometry(Part.Line(App.Vector(-604.284241,269.275238,0),App.Vector(-490.940491,256.878265,0))) # add constraints # helper constraints: f.addConstraint(Sketcher.Constraint('Coincident',iline1,EndPoint,iline2,StartPoint)) f.addConstraint(Sketcher.Constraint('PointOnObject',iline1,EndPoint,icir)) # the Snell's law: f.addConstraint(Sketcher.Constraint('SnellsLaw',iline1,EndPoint,iline2,StartPoint,icir,1.47)) App.ActiveDocument.recompute()
The constraint was introduced in FreeCAD v0.15.4387