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

quick haas post changes

1 REPLY 1
Reply
Message 1 of 2
programming2C78B
120 Views, 1 Reply

quick haas post changes

programming2C78B
Advisor
Advisor

Hey, 

I'd like to have the coolant command come on when the tool reaches the Clearance height, not as soon as the tool is changed. 

I'd also like it to turn off in the same manner. I attached my post. 

 

thanks

Please click "Accept Solution" if what I wrote solved your issue!
0 Likes

quick haas post changes

Hey, 

I'd like to have the coolant command come on when the tool reaches the Clearance height, not as soon as the tool is changed. 

I'd also like it to turn off in the same manner. I attached my post. 

 

thanks

Please click "Accept Solution" if what I wrote solved your issue!
1 REPLY 1
Message 2 of 2

joseph.komenda
Autodesk
Autodesk

Hi @programming2C78B ,

 

To move your coolant around like you suggest, you would want to move your lines 1588 and 1589

  // set coolant after we have positioned at Z
  setCoolant(tool.coolant);

to line 1668.  This moves the coolant on to right after the first Z move down.

 

Next, to move the coolant off, move lines 1441 through 1445

if (properties.fastToolChange && !isProbeOperation()) {
  currentCoolantMode = COOLANT_OFF;
} else if (!operationNeedsSafeToolCall) { // no coolant off command if safe 
  start operation
  onCommand(COMMAND_COOLANT_OFF);
}

 

to line 1388.  Hope that helps.

 

Thanks.



Joseph Komenda
0 Likes

Hi @programming2C78B ,

 

To move your coolant around like you suggest, you would want to move your lines 1588 and 1589

  // set coolant after we have positioned at Z
  setCoolant(tool.coolant);

to line 1668.  This moves the coolant on to right after the first Z move down.

 

Next, to move the coolant off, move lines 1441 through 1445

if (properties.fastToolChange && !isProbeOperation()) {
  currentCoolantMode = COOLANT_OFF;
} else if (!operationNeedsSafeToolCall) { // no coolant off command if safe 
  start operation
  onCommand(COMMAND_COOLANT_OFF);
}

 

to line 1388.  Hope that helps.

 

Thanks.



Joseph Komenda

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

Post to forums  

Autodesk Design & Make Report