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

zFormat is not defined

1 REPLY 1
Reply
Message 1 of 2
Anonymous
200 Views, 1 Reply

zFormat is not defined

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. 

 

 

1 REPLY 1
Message 2 of 2
boopathi.sivakumar
in reply to: Anonymous

@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

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

Post to forums  

Technology Administrators


Autodesk Design & Make Report