Community
HSM Post Processor Forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Editing fanuc mill-turn post processor

4 REPLIES 4
SOLVED
Reply
Message 1 of 5
Reyhan.WIDODO
868 Views, 4 Replies

Editing fanuc mill-turn post processor

Hi,

 

Can someone here help me to change fanuc mill-turn post processor:

  1. tool call from T101 become T0101
  2. Polar coordinate interpolation G112 become G12.1

Thanks in advance.

4 REPLIES 4
Message 2 of 5

1. Search in your post for

writeBlock("T" + + toolFormat.format(tool.number) + toolFormat.format(compensationOffset));

and change it to:

writeBlock("T" + toolFormat.format(tool.number) + toolFormat.format(compensationOffset));

2. search for:

case "POLAR_INTERPOLATION_ON": 
    return 112;
    break;

change it to:

 case "POLAR_INTERPOLATION_ON": 
    return 12.1;
    break;

 

search for:

var gPolarModal = createModal({}, gFormat); // G112, G113

change it to:

var gPolarModal = createModal({}, g1Format); // G112, G113

 

add somewhere at the beginning of your post this:

var g1Format = createFormat({prefix:"G",decimals:1});

 

cheers 



Ivan Stanojevic


Message 3 of 5

That's work!! Thanks ivan for sharing your idea.

Message 4 of 5
scottmoyse
in reply to: Reyhan.WIDODO

@Reyhan.WIDODO thank you for using me via email to get the information you needed, with the pretense that you wanted me to do paid work to develop a post processor for you. Then use that information to get people to do the work for you on the forums. It's not very honest at all!


Scott Moyse
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.


EESignature


Design & Manufacturing Technical Services Manager at Cadpro New Zealand

Co-founder of the Grumpy Sloth full aluminium billet mechanical keyboard project

Message 5 of 5

@scottmoyse

 

I wouldn't have done any of those modifications if I knew that you were negotiating about paid work.



Ivan Stanojevic


Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report