zFormat is not defined

Anonymous

zFormat is not defined

Anonymous
Not applicable

post processer z format not defined during additive operation. I attached the f3d file and postprocessor FYR. Check it and if required change the post accordingly. 

 

 

0 Likes
Reply
227 Views
1 Reply
Reply (1)

boopathi.sivakumar
Autodesk
Autodesk

@Anonymous 

I see the undefined format has been used post processor in the line number 1849

zOutput = createVariable({onchange:function () {retracted = false;}, prefix:"Z"}, zFormat);

you have to change that to 

zOutput = createVariable({onchange:function () {retracted = false;}, prefix:"Z"}, xyzFormat);

also same issue also be found in the line number 1858 you have to change that as well

And in the onSectionEnd function

    case "laserPowder":
      if (((getNextSection().strategy.indexOf("ded_") != -1) || (getNextSection().strategy.indexOf("additive_") != -1)) && (!isLastSection())) {
        // do nothing
      } else {

!isLastSection() should come first like below

    case "laserPowder":
      if (!isLastSection() && ((getNextSection().strategy.indexOf("ded_") != -1) || (getNextSection().strategy.indexOf("additive_") != -1))) {
        // do nothing
      } else {

 save and test it


Boopathi Sivakumar
Senior Technology Consultant