Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gvi70000

    Milling tools catalog

    Hello, Does anyone know how i can import or translate the post processor mach2mill.cps in Catia? This one is fond in ArtCam and Fusion 360 PP library.
  2. gvi70000

    Catia V5 Macro to create Cylinders using Sweep and center curves

    Your welcome Mr. Avram [bigsmile]
  3. gvi70000

    Catia V5 Macro to create Cylinders using Sweep and center curves

    here is a piece of code that does the same thing Option Explicit Dim i As Integer Dim mySel As Selection Dim myPrt As Part Dim myHB As HybridBody Dim mySurfRef, myPointRef, myLineRef As Reference Dim HS_Factory As HybridShapeFactory Dim HS_Surf As...
  4. gvi70000

    Product reordering in CATIA V5 VBA

    Have a look https://www.youtube.com/watch?v=2mO7BpacENo and download the code here http://www.grozeaion.com/catia/v5-programming/97-reorder-components
  5. gvi70000

    Slider crank mechanism

    If you want someone to help you upload models not text. I will not start to make 3d parts only to help you.
  6. gvi70000

    Get the origin coordinates of a sketch

    Dim AbsCoord(8) mySketch.GetAbsoluteAxisData AbsCoord where AbsCoord(0) -> Origin X AbsCoord(1) -> Origin Y AbsCoord(2) -> Origin Z AbsCoord(3) -> H Axis X AbsCoord(4) -> H Axis Y AbsCoord(5) -> H Axis Z AbsCoord(6) -> V Axis X AbsCoord(7) -> V Axis Y AbsCoord(8) -> V Axis Z
  7. gvi70000

    How to get inflection points without using Porcupine Curvature Analysis?

    And here is the final script Catia Scoliosis Simulator
  8. gvi70000

    Target of a Balloon in Drawing

    With scripts is not impossible. You need to create a custom parameter on your parts/Products. You need one macro for the assy to make the numbering and one for drawing to read the parameter from the 3d
  9. gvi70000

    ability to view annotations and datum structure imbedded into models

    What file format do you send to your final user?
  10. gvi70000

    How to get inflection points without using Porcupine Curvature Analysis?

    takes about 3-4 min to compute a 600mm curve, but is better than nothing here are 2 solutions received on LinkedIn Chris Chris Holtorf Retired Boeing Technical Designer Hi, If you have access to the Product Engineering Optimizer workbench try the following: 1. Put a point on your curve...
  11. gvi70000

    How to get inflection points without using Porcupine Curvature Analysis?

    Hi, so....one solution is I project the curve in XY and YZ planes then for each projection i create 3 points on curve with 0.1mm distance between them. I create a circle through these points and make the difference between X or Y(depending on the projection) of the mid point and circle center...
  12. gvi70000

    How to get inflection points without using Porcupine Curvature Analysis?

    Hello Ferdo, Well...since CatiaV5 was down i had a long vacation with the scripting. Now is time to get back in shape :)
  13. gvi70000

    Catia VBA macro programming. Export PRT properties to drawing file. Creating template

    First create the parameters in part/product. then link the drawing texts with those params
  14. gvi70000

    3DXML viewer

    You can contact DS, several years ago you could buy a 3dxml (+measures+annotations..)
  15. gvi70000

    DMU Space Analysis - Clearance settings

    Try to set the 3D accuracy in tools, options,display, performance as low as possible and give it a try
  16. gvi70000

    How to get inflection points without using Porcupine Curvature Analysis?

    Can any one help me in getting the inflection points for a 3D curve without using Porcupine Curvature Analysis? I need a way to get them using other commands or even VBA (i will develop the algorithm any way for VBA)
Back
Top