diff --git a/samples/tcl/ANC101.tcl b/samples/tcl/ANC101.tcl new file mode 100644 index 0000000000..f8e28d2b01 --- /dev/null +++ b/samples/tcl/ANC101.tcl @@ -0,0 +1,283 @@ +# The following example constructs ANC-101 object of CAM-I. +# +# This model was used as a test part for comparing modeling systems in 1979 and +# again in 1983. The tests were organized by Computer Aided Manufacturing +# International (CAM-I). +# +#Category: Modeling +#Title: ANC101 (classic test for CAD modeling from CAM-I) + +pload MODELING + +set my_pi 3.1415926535897931 +set aModelHeight 178.25 +set aPlatformLength 426.25 +set aPlatformWidth 201.5 +set aPlatformHeight 58.9 +set aPrismLength 279 +set aPrismWidth 155 +set aPrismHeight [expr $aModelHeight - $aPlatformHeight] +set aPrismXOffset [expr $aPlatformLength - $aPrismLength - 69.75] +set aPrismYOffset [expr ($aPlatformWidth - $aPrismWidth)/2] + +#================================================================================ +# A base of the model +box _platform $aPlatformLength $aPlatformWidth $aPlatformHeight + +# Make screw holes on the platform +set aScrewHoleRadius [expr 26.2/2] +set aScrewHoleOffset 31 +pcylinder _screwhole $aScrewHoleRadius $aPlatformHeight +ttranslate _screwhole $aScrewHoleOffset $aScrewHoleOffset 0 +bcut _platform _platform _screwhole +reset _screwhole +ttranslate _screwhole [expr $aPlatformLength - $aScrewHoleOffset] $aScrewHoleOffset 0 +bcut _platform _platform _screwhole +reset _screwhole +ttranslate _screwhole [expr $aPlatformLength - $aScrewHoleOffset] [expr $aPlatformWidth - $aScrewHoleOffset] 0 +bcut _platform _platform _screwhole +reset _screwhole +ttranslate _screwhole $aScrewHoleOffset [expr $aPlatformWidth - $aScrewHoleOffset] 0 +bcut _platform _platform _screwhole +reset _screwhole + +# Back side cave +set aCaveLength 81.38 +set aCaveDepth 10 +set aCaveWidth 19.38 +set aBottomLevel [expr $aPlatformHeight/2 - $aCaveWidth/2] +set aTopLevel [expr $aPlatformHeight/2 + $aCaveWidth/2] +beziercurve t_bcurve 4 0 $aCaveLength $aBottomLevel 3 0 [expr $aCaveLength + $aCaveWidth/2] $aBottomLevel 6 0 [expr $aCaveLength + $aCaveWidth/2] $aTopLevel 6 0 $aCaveLength $aTopLevel 3 +vertex t_v1 0 $aCaveLength $aBottomLevel +vertex t_v2 0 $aCaveLength $aTopLevel +mkedge t_e1 t_bcurve +edge t_e2 t_v1 t_v2 +wire t_w t_e1 t_e2 +mkplane t_f1 t_w +prism t_s1 t_f1 $aCaveDepth 0 0 +box t_s2 0 0 $aBottomLevel $aCaveDepth $aCaveLength $aCaveWidth +bfuse _backcave t_s1 t_s2 +bcut _platform _platform _backcave + +# Right side cave +set aRCaveRadius 26.2 +set aRCaveDistToSection 15.5 +set aCurveParam [expr ($my_pi - acos($aRCaveDistToSection/$aRCaveRadius))] +set aRCaveCenterX [expr $aPlatformLength - 162.75] +set aRCaveCenterZ [expr $aPlatformHeight/2] +circle t_circle $aRCaveCenterX 0 $aRCaveCenterZ 0 1 0 1 0 0 $aRCaveRadius +trim t_curve t_circle -$aCurveParam $aCurveParam +mkedge t_e1 t_curve +cvalue t_curve -$aCurveParam t_x t_y t_z +vertex t_v1 t_x t_y t_z +cvalue t_curve $aCurveParam t_x t_y t_z +vertex t_v2 t_x t_y t_z +edge t_e2 t_v1 t_v2 +wire t_w t_e1 t_e2 +mkplane t_f t_w +prism t_s t_f 0 $aCaveDepth 0 +bcut _platform _platform t_s + +# Caves on front side +set aFCaveCirclesRadius 4.65 +set aFCaveBottomWidth 37.8 +set aFCaveHeight 38.75 +set aFCaveTopWidth 27 +set aFCaveSmallCircleRadius 9.3 +circle t_circle1 [expr $aFCaveTopWidth/2] [expr $aFCaveHeight/2] $aFCaveCirclesRadius +circle t_circle2 [expr -$aFCaveTopWidth/2] [expr $aFCaveHeight/2] $aFCaveCirclesRadius +circle t_circle3 [expr -$aFCaveBottomWidth/2] [expr -$aFCaveHeight/2] $aFCaveCirclesRadius +circle t_circle4 [expr $aFCaveBottomWidth/2] [expr -$aFCaveHeight/2] $aFCaveCirclesRadius + +lintan t_l t_circle1 t_circle2 +trim t_side1 t_l_1 0 $aFCaveTopWidth + +lintan t_l t_circle2 t_circle3 +trim t_side2 t_l_1 0 39.058577803089555 + +lintan t_l t_circle3 t_circle4 +trim t_side3 t_l_1 0 $aFCaveBottomWidth + +lintan t_l t_circle4 t_circle1 +trim t_side4 t_l_1 0 39.196587861700415 + +trim t_circle1 t_circle1 0.15109758878146562 1.5707963267948966 +trim t_circle2 t_circle2 1.5707963267948966 3.0158086349284448 +trim t_circle3 t_circle3 3.0158086349284448 4.7123889803846897 +trim t_circle4 t_circle4 4.7123889803846897 0.15109758878146562 + +plane t_plane 0 0 0 1 0 0 0 1 0 + +to3d t_circle1 t_circle1 t_plane +to3d t_circle2 t_circle2 t_plane +to3d t_circle3 t_circle3 t_plane +to3d t_circle4 t_circle4 t_plane +to3d t_side1 t_side1 t_plane +to3d t_side2 t_side2 t_plane +to3d t_side3 t_side3 t_plane +to3d t_side4 t_side4 t_plane + +mkedge t_e1 t_circle1 +mkedge t_e2 t_side1 +mkedge t_e3 t_circle2 +mkedge t_e4 t_side2 +mkedge t_e5 t_circle3 +mkedge t_e6 t_side3 +mkedge t_e7 t_circle4 +mkedge t_e8 t_side4 + +wire t_w t_e1 t_e2 t_e3 t_e4 t_e5 t_e6 t_e7 t_e8 +mkplane t_f t_w +prism t_s1 t_f -$aCaveDepth 0 0 + +circle t_circle 0 [expr $aFCaveTopWidth/2 + $aFCaveBottomWidth/2] 0 1 0 0 $aFCaveSmallCircleRadius +mkedge t_e t_circle +wire t_w t_e +mkplane t_f t_w +prism t_s2 t_f [expr -$aCaveDepth/2] 0 0 + +box t_s3 0 0 -$aFCaveSmallCircleRadius [expr -$aCaveDepth/2] [expr $aFCaveTopWidth/2 + $aFCaveBottomWidth/2] [expr $aFCaveSmallCircleRadius*2] + +# Compile elements +bfuse t_s2 t_s2 t_s3 +bfuse _frontcave t_s1 t_s2 +unifysamedom _frontcave _frontcave + +# Cut this cave from the platform +ttranslate _frontcave $aPlatformLength [expr $aPlatformWidth*2/3] [expr $aPlatformHeight/2] +bcut _platform _platform _frontcave + +tmirror _frontcave $aPlatformLength [expr $aPlatformWidth/2] [expr $aPlatformHeight/2] 0 1 0 +bcut _platform _platform _frontcave + +#================================================================================ +# A wedge on the platform +box t_box $aPrismXOffset $aPrismYOffset $aPlatformHeight $aPrismLength $aPrismWidth $aPrismHeight + +set aCutwedgeLength [expr $aPrismHeight/0.57735] +wedge _cutwedge $aPlatformLength [expr $aPrismYOffset + $aPrismWidth] $aModelHeight 0 -1 0 -1 0 0 $aCutwedgeLength $aPrismHeight $aPrismWidth 0 + +bcut _prism t_box _cutwedge + +# Make 9 small holes on a top side +set aWedgeSmallHolesRadius 7.68 +set aWedgeSmallHolesOrbit 67.81 +set aWedgeHoleXPos [expr $aPrismXOffset + 77.5] +set aWedgeHoleYPos [expr $aPrismYOffset + 77.5] + +plane t_plane $aWedgeHoleXPos $aWedgeHoleYPos [expr $aPlatformHeight + $aPrismHeight/2] 0 0 1 1 0 0 +pcylinder t_cyl t_plane $aWedgeSmallHolesRadius [expr $aPrismHeight/2] + +set i 2 +while {$i <= 10} {ttranslate t_cyl [expr $aWedgeSmallHolesOrbit*cos($i*$my_pi/6)] [expr $aWedgeSmallHolesOrbit*sin($i*$my_pi/6)] 0; bcut _prism _prism t_cyl; reset t_cyl; incr i} + +# Make a cylinder on a canted side +set aWedgeCylinderRadius 38.75 +set aWedgeCylinderHeight 38.75 +set aWedgeCantedHeight [expr tan($my_pi/6)*($aCutwedgeLength - 69.75)] +set aWedgeCylinderZPos [expr $aModelHeight - $aWedgeCantedHeight/2] +plane t_plane [expr $aPrismXOffset + $aPrismLength*3/4] [expr $aPrismYOffset + $aPrismWidth/2] $aWedgeCylinderZPos cos($my_pi/3) 0 sin($my_pi/3) 0 1 0 +pcylinder t_cyl t_plane $aWedgeCylinderRadius $aWedgeCylinderHeight +explode t_cyl e +blend t_cyl t_cyl 3 t_cyl_1 +bfuse _prism _prism t_cyl +unifysamedom _prism _prism + +# Make a hole in the cylinder on the wedge +pcylinder t_cyl t_plane [expr $aWedgeCylinderRadius/2] 100 +ttranslate t_cyl [expr -60*cos($my_pi/3)] 0 [expr -60*sin($my_pi/3)] +bcut _prism _prism t_cyl + +# Make a hole on a right side of the wedge +plane t_plane [expr $aPlatformLength - 162.75] $aPrismYOffset [expr $aModelHeight - $aWedgeCantedHeight] 0 1 0 1 0 0 +pcylinder t_cyl t_plane 13.1 [expr $aPrismWidth/2] +bcut _prism _prism t_cyl + +# Fuse the platform and the prism +bfuse _model _platform _prism + +# Make a pass-through hole +set aWedgeHoleInnerRadius 38.77 +set aWedgeHoleOuterRadius 58.13 +set aWedgeHoleBottomInnerRadius 50.38 + +# Cylinders from bottom to top +plane t_plane $aWedgeHoleXPos $aWedgeHoleYPos 0 +pcylinder t_cyl1 t_plane $aWedgeHoleOuterRadius 10 +pcylinder t_cyl2 t_plane $aWedgeHoleBottomInnerRadius 10 +pcylinder t_cyl3 t_plane $aWedgeHoleInnerRadius [expr $aModelHeight - 30] +pcylinder t_cyl4 t_plane $aWedgeHoleOuterRadius 10 + +ttranslate t_cyl2 0 0 10 +ttranslate t_cyl3 0 0 20 +ttranslate t_cyl4 0 0 [expr $aModelHeight - 10] + +bfuse _cutCylindricShape t_cyl1 t_cyl2 +bfuse _cutCylindricShape _cutCylindricShape t_cyl3 +bfuse _cutCylindricShape _cutCylindricShape t_cyl4 + +bcut _model _model _cutCylindricShape + +# Add a block on left side +circle t_circle1 0 0 38.75 +circle t_circle2 [expr 38.75 + 9.3] [expr -57.35 + 9.3] 9.3 +circle t_circle3 [expr -38.75 - 9.3] [expr -57.35 + 9.3] 9.3 + +lintan t_l t_circle1 t_circle2 +trim t_line12 t_l_2 0 48.05 + +lintan t_l t_circle2 t_circle3 +trim t_line23 t_l_3 0 96.1 + +lintan t_l t_circle3 t_circle1 +trim t_line31 t_l_4 0 48.05 + +trim t_circle1 t_circle1 0 $my_pi +trim t_circle2 t_circle2 $my_pi 4.7123889803846897 +trim t_circle3 t_circle3 4.7123889803846897 6.2831853071795862 + +reverse t_circle1 + +plane t_plane [expr $aPrismXOffset + 77.5] [expr $aPrismYOffset + $aPrismWidth] [expr $aPlatformHeight + 57.35] 0 1 0 -1 0 0 + +to3d t_circle1 t_circle1 t_plane +to3d t_circle2 t_circle2 t_plane +to3d t_circle3 t_circle3 t_plane +to3d t_line12 t_line12 t_plane +to3d t_line23 t_line23 t_plane +to3d t_line31 t_line31 t_plane + +mkedge t_e1 t_circle1 +mkedge t_e2 t_line31 +mkedge t_e3 t_circle3 +mkedge t_e4 t_line23 +mkedge t_e5 t_circle2 +mkedge t_e6 t_line12 + +wire t_w t_e1 t_e2 t_e3 t_e4 t_e5 t_e6 +mkplane t_f t_w +prism t_s t_f 0 $aCaveDepth 0 + +bfuse _model _model t_s + +# Make fillets +explode _model e + +# Make a weld at joint edges of platform and wedge +blend _model _model 2 _model_28 +blend _model _model 2 _model_29 +blend _model _model 2 _model_30 +blend _model _model 2 _model_31 +blend _model _model 2 _model_33 + +# Cylinder on wedge +blend result _model 2 _model_161 + +# Show result +pload VISUALIZATION +vinit Driver1/Viewer1/View1 +vsetcolorbg 200 200 255 +vdisplay result +vfit +vsetdispmode 1 +vshowfaceboundary result 1 diff --git a/samples/tcl/MBBGehauseRohteil.tcl b/samples/tcl/MBBGehauseRohteil.tcl new file mode 100644 index 0000000000..26860c05bd --- /dev/null +++ b/samples/tcl/MBBGehauseRohteil.tcl @@ -0,0 +1,269 @@ +# The following example constructs (however, not trying to follow the drawings +# precisely) an airplane part called Gehause Rohteil from MBB Deutsche Aerospace. +# In this example the planar geometry is combined together with cylindrical parts. +# There are many ways to create a single mechanical workpiece like the following +# one. Here we choose Booleans as a main tool for material cutting. Fillets +# (presented in the original model) are not employed herein as we are focused +# on BOPs only. However, Gehause Rohteil is a good model to test blendings as well. +# +# This model was used as a test part for comparing modeling systems in 1979 and +# again in 1983. The tests were organized by Computer Aided Manufacturing +# International (CAM-I). +# +#Category: Modeling +#Title: MBB Gehause Rohteil (classic test for CAD modelling by CAM-I) + +pload MODELING XSDRAW + +# ----------------------------------------------------------------------------- +# Prepare base contour +# ----------------------------------------------------------------------------- + +point p1 0 0 +point p2 35 0 +point p3 39 4 +point p4 39 10 +point p5 35 13 +point p6 27 13 +point p7 27 10 +point p8 22 10 +point p9 20 8 +point p10 20 4 +point p11 11 4 +point p12 11 3 +point p13 5 3 +point p14 5 13 +point p15 0 13 +point p16 0 9 +point p17 4 9 +point p18 4 4 +point p19 0 4 + +line l1 0 0 1 0; trim l1 l1 0 35 +line l2 39 4 0 1; trim l2 l2 0 6 +line l3 35 13 -1 0; trim l3 l3 0 8 +line l4 27 13 0 -1; trim l4 l4 0 3 +line l5 27 10 -1 0; trim l5 l5 0 5 +line l6 20 8 0 -1; trim l6 l6 0 4 +line l7 20 4 -1 0; trim l7 l7 0 9 +line l8 11 4 0 -1; trim l8 l8 0 1 +line l9 11 3 -1 0; trim l9 l9 0 6 +line l10 5 3 0 1; trim l10 l10 0 10 +line l11 5 13 -1 0; trim l11 l11 0 5 +line l12 0 13 0 -1; trim l12 l12 0 4 +line l13 0 9 1 0; trim l13 l13 0 4 +line l14 4 9 0 -1; trim l14 l14 0 5 +line l15 4 4 -1 0; trim l15 l15 0 4 +line l16 0 4 0 -1; trim l16 l16 0 4 + +# We use Bezier curves here instead of circles. This does not make +# a great sense since we are focused on a principle rather than +# trying to follow the drawing precisely +2dbeziercurve c1 3 35 0 1 39 0 1 39 4 1 +2dbeziercurve c2 3 39 10 1 39 13 1 35 13 1 +2dbeziercurve c3 3 22 10 1 20 10 1 20 8 1 + +# Circle for a big hole +circle cbig 33 6.5 4.0 + +# Create topology +mkedge e1 l1 +mkedge e2 c1 +mkedge e3 l2 +mkedge e4 c2 +mkedge e5 l3 +mkedge e6 l4 +mkedge e7 l5 +mkedge e8 c3 +mkedge e9 l6 +mkedge e10 l7 +mkedge e11 l8 +mkedge e12 l9 +mkedge e13 l10 +mkedge e14 l11 +mkedge e15 l12 +mkedge e16 l13 +mkedge e17 l14 +mkedge e18 l15 +mkedge e19 l16 +wire wout e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 e14 e15 e16 e17 e18 e19 +mkedge ein1 cbig +wire win1 ein1 +mkplane f wout +mkplane f1 win1 +fixshape f f +fixshape f1 f1 +bcut f f f1 + +# ----------------------------------------------------------------------------- +# Make extrusion +# ----------------------------------------------------------------------------- + +prism p f 0 0 3 + +# ----------------------------------------------------------------------------- +# Prepare a contour on top face +# ----------------------------------------------------------------------------- + +point p1 0 0 +point p2 28 0 +point p3 28 13 +point p4 27 13 +point p5 27 10 +point p6 22 10 +point p7 20 8 +point p8 20 4 +point p9 11 4 +point p10 11 3 +point p11 5 3 +point p12 5 13 +point p13 0 13 +line l1 0 0 1 0; trim l1 l1 0 28 +line l2 28 0 0 1; trim l2 l2 0 13 +line l3 28 13 -1 0; trim l3 l3 0 1 +line l4 27 13 0 -1; trim l4 l4 0 3 +line l5 27 10 -1 0; trim l5 l5 0 5 +line l6 20 8 0 -1; trim l6 l6 0 4 +line l7 20 4 -1 0; trim l7 l7 0 9 +line l8 11 4 0 -1; trim l8 l8 0 1 +line l9 11 3 -1 0; trim l9 l9 0 6 +line l10 5 3 0 1; trim l10 l10 0 10 +line l11 5 13 -1 0; trim l11 l11 0 5 +line l12 0 13 0 -1; trim l12 l12 0 13 +2dbeziercurve c3 3 22 10 1 20 10 1 20 8 1 + +# Create topology on top face +plane top_pln 0 0 3 +to3d l1 l1 top_pln +to3d l2 l2 top_pln +to3d l3 l3 top_pln +to3d l4 l4 top_pln +to3d l5 l5 top_pln +to3d c3 c3 top_pln +to3d l6 l6 top_pln +to3d l7 l7 top_pln +to3d l8 l8 top_pln +to3d l9 l9 top_pln +to3d l10 l10 top_pln +to3d l11 l11 top_pln +to3d l12 l12 top_pln +mkedge e1 l1 +mkedge e2 l2 +mkedge e3 l3 +mkedge e4 l4 +mkedge e5 l5 +mkedge e6 c3 +mkedge e7 l6 +mkedge e8 l7 +mkedge e9 l8 +mkedge e10 l9 +mkedge e11 l10 +mkedge e12 l11 +mkedge e13 l12 +wire wout e1 e2 e3 e4 e5 e6 e7 e8 e9 e10 e11 e12 e13 +mkface ftop top_pln wout +fixshape ftop ftop + +# ----------------------------------------------------------------------------- +# Make top extrusion +# ----------------------------------------------------------------------------- + +prism ptop ftop 0 0 1.5 + +# ----------------------------------------------------------------------------- +# Fuse top and bottom parts and make features +# ----------------------------------------------------------------------------- + +# Fuse top and bottom +bfuse p p ptop + +# Create a hole +plane top_pln 0 0 10 +circle csmall 23 6.5 2.0 +to3d hole_top csmall top_pln +plane bot_pln 0 0 -10 +to3d hole_bot csmall bot_pln +mkedge ehole_top hole_top +mkedge ehole_bot hole_bot +wire whole_top ehole_top +wire whole_bot ehole_bot +thrusections tool 1 1 whole_top whole_bot +bcut p p tool + +# Add extrusion around the hole +plane top_pln 0 0 4.5 +circle csmall_outer 23 6.5 3.0 +circle csmall_inner 23 6.5 2.0 +to3d hole_top_outer csmall_outer top_pln +to3d hole_top_inner csmall_inner top_pln +mkedge e_hole_top_outer hole_top_outer +mkedge e_hole_top_inner hole_top_inner +wire w_hole_top_outer e_hole_top_outer +wire w_hole_top_inner e_hole_top_inner +mkface ftube_outer top_pln w_hole_top_outer +mkface ftube_inner top_pln w_hole_top_inner +fixshape ftube_outer ftube_outer +fixshape ftube_inner ftube_inner +prism ptube_outer ftube_outer 0 0 3 +prism ptube_inner ftube_inner 0 0 3 +bcut ptube ptube_outer ptube_inner +bfuse p p ptube + +# Build elevation "teeths" near the big hole +box t1 26 0 0 3 2.5 7 +box t2 26 13 0 3 -3 7 +bfuse p p t1 +bfuse p p t2 + +# Build elevation "teeths" near the tail +box t1 0 0 0 5 3 8 +box t2 0 13 0 5 -3 8 +bfuse p p t1 +bfuse p p t2 + +# Remove some material from tail "teeths" +box blend_box 0 -5 0 5 25 5 +trotate blend_box blend_box 0 0 0 0 1 0 -10 +ttranslate blend_box blend_box 2.5 0 2.25 +bcut p p blend_box + +# Remove some material from "teeths" near big hole +box blend_box 0 -5 0 5 25 5 +trotate blend_box blend_box 0 0 0 0 1 0 -9 +ttranslate blend_box blend_box 14.5 0 1.5 +bcut p p blend_box + +# Hole at the tail +ellipse tail_hole1 0 0 0.75 0.5 +plane base_pln 2 6.5 0 +to3d tail_hole_3d1 tail_hole1 base_pln +mkedge e_tail_hole1 tail_hole_3d1 +wire w_tail_hole1 e_tail_hole1 +plane base_pln 2 6.5 20 +to3d tail_hole_3d2 tail_hole1 base_pln +mkedge e_tail_hole2 tail_hole_3d2 +wire w_tail_hole2 e_tail_hole2 +thrusections tail_tube 1 1 w_tail_hole1 w_tail_hole2 +bcut p p tail_tube + +# Chamfer at tail +box blend_box 0 3 0 5 7 5 +trotate blend_box blend_box 0 0 0 0 1 0 -5 +ttranslate blend_box blend_box 2 0 1.5 +bcut p p blend_box + +# ----------------------------------------------------------------------------- +# Extract final solid and simplify it +# ----------------------------------------------------------------------------- + +explode p So +unifysamedom result p_1 + +# Show result +pload VISUALIZATION +vinit Driver1/Viewer1/View1 +vsetcolorbg 200 200 255 +vdisplay result +vfit +vsetdispmode 1 +vshowfaceboundary result 1 diff --git a/tests/demo/samples/anc101 b/tests/demo/samples/anc101 new file mode 100644 index 0000000000..b19aedd1ea --- /dev/null +++ b/tests/demo/samples/anc101 @@ -0,0 +1,8 @@ +# test for creation of ANC101 shape +source $env(CASROOT)/samples/tcl/ANC101.tcl + +# check result for validity and make a snapshot +checkshape result +vdump $imagedir/${test_image}.png + +puts "TEST COMPLETED" diff --git a/tests/demo/samples/gehause b/tests/demo/samples/gehause new file mode 100644 index 0000000000..bed036bc18 --- /dev/null +++ b/tests/demo/samples/gehause @@ -0,0 +1,8 @@ +# test for creation of MBBGehauseRohteil shape +source $env(CASROOT)/samples/tcl/MBBGehauseRohteil.tcl + +# check result for validity and make a snapshot +checkshape result +vdump $imagedir/${test_image}.png + +puts "TEST COMPLETED"