Free download
Test Mode creates virtual load Cells for self-learning training
Event, Sector, Zone and Cell setup
// Main processing function function onSection(section) switch(section) case "setup": onSetup(); break; case "toolpath": onToolpath(); break;
// Linear movement - 2D function onLinear2D(section) var x = section.getX(); var y = section.getY(); var z = section.getZ(); var feed = section.getFeedrate(); siemens 828d post processor for fusion 360
if (x != undefined) line += " " + xOutput.format(x); if (y != undefined) line += " " + yOutput.format(y); if (z != undefined) line += " " + zOutput.format(z); case "toolpath": onToolpath()
// Tapping cycle (CYCLE84) function onTappingCycle(section) var x = section.getX(); var y = section.getY(); var z = section.getZ(); var retract = section.getRetractHeight(); var feed = section.getFeedrate(); var spindleSpeed = section.getSpindleSpeed(); var y = section.getY()
writeBlock("MCALL CYCLE86(" + rtp + "," + rfp + "," + sdis + "," + dp + "," + dpr + "," + dtb + "," + sdir + "," + rpa + "," + rpo + "," + rpap + "," + rpop + ")"); writeBlock("X" + xOutput.format(x) + " Y" + yOutput.format(y)); writeBlock("MCALL");
// Unknown cycle handling function onUnknownCycle(section) writeBlock("; Unknown cycle: " + section.getCycleType());
// Siemens 828D post processor for Fusion 360 // Description: Siemens Sinumerik 828D milling post processor // Version: 1.0 // Date: 2024 // Requirements: Fusion 360 with manufacturing extension // Post processor configuration var properties = vendor: "Siemens", product: "828D Milling", version: "1.0", supportsMultipleSpindle: false, supportsSpindleDirection: true, supportsCoolant: true, supportsToolpathRadiusCompensation: true, supportsToolDiameter: true, supportsRadialCompensation: false, supportsLiveTool: false, isLibrary: false, codePage: "windows-1252" ;