PDA

View Full Version : Machining - Defaut angle


Shaba
05-24-2008, 09:25 AM
Hello
There is a way to set default angle of Machining at 120°? :confused:
Now is always 118°

TNX! :cool:

John Scheffel
05-27-2008, 11:31 AM
Can you provide more detail on where you get the default angle of 118°? "Machining" could mean the Machine menu (Extrude, Mill, Turn, etc.) or the Machining module which must be activated from the Modules menu. There are many places to specify an angle in both of these.

Shaba
05-28-2008, 12:21 AM
Here is.
I'm interested to Cone Angle and Cham. Angle

TNX! :cool:

Shaba
09-05-2008, 03:20 AM
Anyone can help me?

Wolfgang
09-05-2008, 11:57 AM
May be...

how about your german ;)

see
Standard-Fasenwinkel in Machining-Modul (http://ww3.cad.de/foren/ubb/Forum29/HTML/000430.shtml). even when this thread is more than 5 1/2 years old, I guess it's still the same. You have to specify the angle in internal units, so rad, and not in degree.

You also might be interested in http://osd.cad.de/codes_3d.htm#10 (context menu for machining) and http://osd.cad.de/codes_3d.htm#11 (thread tables, machining customization).

Sorry for the non-english version. When autumn will come I will (hopefully) find more time to continue writing the english pages. :o

Wolfgang
09-05-2008, 12:03 PM
it's a two liner:
(in-package :cad-cam-link-customization)
(use-package :oli)
(defun get-mach_adv_library-tappedholes-chamfer_angle-default-fnc (&rest args)
(sd-deg-to-rad 120))

can be added (without the in-package line) to your ma_customize file.

!! not tested, only written !!

For cone and chamfer angle there must be similar functions. I guess you'll find their name when searching to the above function name.

Shaba
09-05-2008, 03:30 PM
TNX!
German for me is like Japanese or Arabic
Your code i great! It works!
Where i can find name od cone angle?
TNX again

Shaba
09-06-2008, 03:18 AM
I have found all angle!

(in-package :cad-cam-link-customization)
(use-package :oli)
(defun get-mach_adv_library-tappedholes-chamfer_angle-default-fnc (&rest args)
(sd-deg-to-rad 90))
(defun get-mach_adv_library-tappedholes-back_chamfer_angle-default-fnc (&rest args)
(sd-deg-to-rad 90))
(defun get-mach_adv_library-tappedholes-cone_angle-default-fnc (&rest args)
(sd-deg-to-rad 120))

TNX again!
You do a great job man!

Wolfgang
09-06-2008, 04:48 AM
I hoped once you have one function name you'll find the other ones in the online help. Problem in the Modeling help is quite often to have the right expression to look for.

Fine that we found the solution now.

andrea
09-09-2008, 03:22 AM
and the value
Cham Depth???

Shaba
09-09-2008, 07:22 AM
Cham Depth are set in the file ma_customize
See for es. http://osd.cad.de/codes_3d.htm#11