1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/**
  Copyright (C) 2012-2023 by Autodesk, Inc.
  All rights reserved.
 
  Deposition sample post processor configuration.
 
  $Revision: 44063 b4957549e0a71dca83e72413d3bbd824a1846569 $
  $Date: 2023-04-28 12:14:21 $
 
  FORKID {5CC0B63E-B1A0-4272-BD17-29A7C354EE2B}
*/
 
description = "Deposition sample post processor";
vendor = "Autodesk";
legal = "Copyright (C) 2012-2023 by Autodesk, Inc.";
certificationLevel = 2;
minimumRevision = 45834;
longDescription = "Generic Deposition sample post processor.";
 
extension = "nc";
setCodePage("ascii");
 
capabilities = CAPABILITY_MILLING;
tolerance = spatial(0.002, MM);
 
minimumChordLength = spatial(0.25, MM);
minimumCircularRadius = spatial(0.01, MM);
maximumCircularRadius = spatial(1000, MM);
minimumCircularSweep = toRad(0.01);
maximumCircularSweep = toRad(180);
allowHelicalMoves = true;
allowedCircularPlanes = undefined; // allow any circular motion
 
var gFormat = createFormat({prefix:"G", decimals:1});
var mFormat = createFormat({prefix:"M", decimals:0});
var xyzFormat = createFormat({decimals:(unit == MM ? 3 : 4)});
var abcFormat = createFormat({decimals:3, forceDecimal:true, scale:DEG});
var feedFormat = createFormat({decimals:(unit == MM ? 1 : 2)});
 
var xOutput = createVariable({prefix:"X"}, xyzFormat);
var yOutput = createVariable({prefix:"Y"}, xyzFormat);
var zOutput = createVariable({prefix:"Z"}, xyzFormat);
var aOutput = createVariable({prefix:"A"}, abcFormat);
var bOutput = createVariable({prefix:"B"}, abcFormat);
var cOutput = createVariable({prefix:"C"}, abcFormat);
var feedOutput = createVariable({prefix:"F"}, feedFormat);
 
var gMotionModal = createModal({}, gFormat);
 
function onSection() {
  // #### Add the code below into the onSection function of your postprocessor ####
  if (isDepositionOperation()) {
    setDepositionCommands(); // setup for deposition process parameters, specify your commands in that function
    writeDepositionHeader(tool);
    writeProcessEquipmentCommands(true);
  }
 
  // Important note, make sure that you disable the spindle speed output for deposition operations in your postprocessor.
}
 
function onSectionEnd() {
  // #### Add the code below into the onSectionEnd function of your postprocessor ####
  if (isDepositionOperation()) {
    writeProcessEquipmentCommands(false);
  }
}
 
// #### If your postprocessor does not have the onMovement function, you have to add the entire function below. ####
function onMovement(movement) {
  // #### Add the code below into the onMovement function of your postprocessor. ####
  if (isDepositionOperation()) {
    onMovementDeposition(movement);
  }
}
 
// #### Add the entire code beginning from 'Start of Deposition logic' to 'End of Deposition logic' at the end of your postprocessor ####
 
// Start of Deposition logic
minimumRevision = minimumRevision < 45834 ? 45834 : minimumRevision;
capabilities |= CAPABILITY_ADDITIVE;
 
if (typeof properties != "object") {
  properties = {};
}
 
properties.depositOnTransitions = {
  title      : "Deposit during transitions",
  description: "Keep Deposition ON during transition moves.",
  type       : "boolean",
  value      : false,
  scope      : "post",
  group      : "preferences"
};
 
var commands = {};
function setDepositionCommands() {
  getProcessParameters(); // update process parameters for the current section
  switch (tool.type) {
  case TOOL_DEPOSITING_ELECTRIC_ARC_WIRE:
    // insert startup codes for electric arc wire here
    commands = {
      deposition      : {on:mFormat.format(101), off:mFormat.format(103)},
      processEquipment: {
        on: [  // commands to turn on process equipment
          formatWords(gFormat.format(90), formatComment("ABSOLUTE MODE")),
          formatWords(gFormat.format(300), "F" + processParameters.gasFlowRate, formatComment("SHIELD GAS FLOW RATE")),
          formatWords(gFormat.format(301), "V" + processParameters.arcCurrent, formatComment("ARC VOLTAGE")),
          formatWords(gFormat.format(302), "A" + processParameters.arcVoltage, formatComment("ARC CURRENT")),
          formatWords(gFormat.format(303), "S" + processParameters.wireSpeed, formatComment("WIRE SPEED")),
          formatWords(mFormat.format(304), formatComment("PROCESS ON"))],
        off: [  // commands to turn off process equipment
          formatWords(mFormat.format(305), formatComment("PROCESS OFF")),
          formatWords(gFormat.format(303), "S0", formatComment("WIRE STOP")),
          formatWords(gFormat.format(300), "F0000", formatComment("GAS OFF"))]
      }
    };
    break;
  case TOOL_DEPOSITING_LASER_POWDER:
    // insert startup codes for laser powder here
    commands = {
      deposition      : {on:mFormat.format(441), off:mFormat.format(442)},
      processEquipment: {
        on: [  // commands to turn on process equipment
          formatWords(mFormat.format(444), formatComment("CLADDING DOOR OPEN")),
          formatWords(gFormat.format(0), gFormat.format(90), "W-400.", formatComment("POWDER HEAD TO POSITION")),
          formatWords(gFormat.format(910),
            "E" + processParameters.depositionPower,
            "I" + processParameters.gasFlowRate,
            "J" + processParameters.auxGasFlowRate,
            "R" + processParameters.powderFlowRate,
            "U" + processParameters.carrierGasFlowRate),
          formatWords(mFormat.format(440), formatComment("NOZZLE GAS ON")),
          formatWords(mFormat.format(441), formatComment("SHIELD GAS ON")),
          formatWords(gFormat.format(4), gFormat.format(94), "X" + spatialFormat.format(3), formatComment("WAIT 3s")),
          formatWords(gFormat.format(441), "H1", formatComment("HOPPER 1 ON")),
          formatWords(gFormat.format(4), gFormat.format(94), "X" + spatialFormat.format(20), formatComment("WAIT 20s")),
          formatWords(gFormat.format(460), formatComment("WORK SHIFT FOR AM HEAD"))],
        off: [  // commands to turn off process equipment
          formatWords(mFormat.format(452), formatComment("DISC STOP")),
          formatWords(mFormat.format(426), formatComment("CARRIER GAS OFF")),
          formatWords(gFormat.format(442), formatComment("NOZZLE SHIELD GAS OFF")),
          formatWords(gFormat.format(4), gFormat.format(94), "X" + spatialFormat.format(15), formatComment("WAIT 15s")),
          formatWords(gFormat.format(0), gFormat.format(90), "W0.", formatComment("CLADDING HEAD HOME POSITION")),
          formatWords(mFormat.format(445), formatComment("CLADDING DOOR CLOSE")),
          formatWords(mFormat.format(461), formatComment("WORK SHIFT FOR AM HEAD CANCEL"))]
      }
    };
    break;
  case TOOL_DEPOSITING_LASER_WIRE:
    // insert startup codes for laser wire here
    commands = {
      deposition      : {on:mFormat.format(120), off:mFormat.format(121)},
      processEquipment: {
        on: [  // commands to turn on process equipment
          formatWords(gFormat.format(90), formatComment("ABSOLUTE MODE")),
          formatWords(gFormat.format(500), "A" + processParameters.gasFlowRate, formatComment("SHIELDING GAS FLOW RATE")),
          formatWords(gFormat.format(500), "B" + processParameters.auxGasFlowRate, formatComment("AUXILIARY GAS FLOW RATE")),
          formatWords(gFormat.format(500), "S" + processParameters.wireSpeed, formatComment("WIRE SPEED")),
          formatWords(mFormat.format(504), "K" + processParameters.depositionPower, formatComment("POWER"))],
        off: [  // commands to turn off process equipment
          formatWords(gFormat.format(500), "A0", formatComment("SHIELD GAS FLOW RATE")),
          formatWords(gFormat.format(500), "B0", formatComment("AUXILIARY GAS")),
          formatWords(gFormat.format(500), "S0", formatComment("WIRE STOP")),
          formatWords(mFormat.format(504), "K0", formatComment("POWER"))]
      }
    };
    break;
  default:
    error(localize("Unsupported deposition tool type."));
    return;
  }
}
 
if (typeof spatialFormat == "undefined") {
  var spatialFormat = createFormat({decimals:(unit == MM ? 3 : 4)});
}
 
/** Get process parameters from tool parameters, post properties */
var processParameters = {};
function getProcessParameters() {
  processParameters = {
    beadWidth         : spatialFormat.format(getParameter("operation:tool_beadWidth", 0)),
    layerThickness    : spatialFormat.format(getParameter("operation:tool_layerThickness", 0)),
    stepover          : spatialFormat.format(getParameter("operation:tool_stepover", 0)),
    toolSpeed         : spatialFormat.format(getParameter("operation:tool_feedDepositing", 0)),
    depositionLength  : spatialFormat.format(currentSection.getCuttingDistance()),
    gasFlowRate       : spatialFormat.format(getParameter("operation:tool_depositingShieldGasFlowRate", 0)),
    arcCurrent        : spatialFormat.format(getParameter("operation:tool_depositingCurrent", 0)),
    arcVoltage        : spatialFormat.format(getParameter("operation:tool_depositingVoltage", 0)),
    wireSpeed         : spatialFormat.format(getParameter("operation:tool_feedWire", 0)),
    auxGasFlowRate    : spatialFormat.format(getParameter("operation:tool_depositingAuxiliaryGasFlowRate", 0)),
    carrierGasFlowRate: spatialFormat.format(getParameter("operation:tool_depositingCarrierGasFlowRate", 0)),
    powderFlowRate    : spatialFormat.format(getParameter("operation:tool_powderFlowRate", 0)),
    depositionPower   : spatialFormat.format(getParameter("operation:tool_depositingPower", 0))
  };
}
 
var _unit = unit == MM ? " mm" : " in";
var _unitRate = unit == MM ? " lpm" : " cfm";
function writeDepositionHeader(tool) {
  writeln("");
  writeComment(getToolTypeName(tool.type).toUpperCase() + " DEPOSITION OPERATION");
 
  writeComment("BEAD WIDTH = " + processParameters.beadWidth + _unit);
  writeComment("LAYER THICKNESS = " + processParameters.layerThickness + _unit);
  writeComment("STEPOVER = " + processParameters.stepover + _unit);
  writeComment("TOOL SPEED = " + processParameters.toolSpeed + _unit + "/min");
  writeComment("DEPOSITED LENGTH = " + processParameters.depositionLength + _unit);
  writeln("");
  writeComment("PROCESS PARAMETERS");
  writeComment("SHIELDING GAS FLOW RATE = " + processParameters.gasFlowRate + _unitRate);
 
  if (tool.type != TOOL_DEPOSITING_ELECTRIC_ARC_WIRE) {
    writeComment("AUXILIARY GAS FLOW RATE = " + processParameters.auxGasFlowRate + _unitRate);
    writeComment("POWER = " + processParameters.depositionPower + " W");
  } else {
    writeComment("CURRENT = " + processParameters.arcCurrent + " A");
    writeComment("VOLTAGE = " + processParameters.arcVoltage + " V");
  }
  if (tool.type != TOOL_DEPOSITING_LASER_POWDER) {
    writeComment("WIRE SPEED = " + processParameters.wireSpeed + _unit + "/min");
  } else {
    writeComment("CARRIER GAS FLOW RATE = " + processParameters.carrierGasFlowRate + _unitRate);
    writeComment("POWDER FLOW RATE = " + processParameters.powderFlowRate  + _unitRate);
  }
  writeln("");
}
 
function writeProcessEquipmentCommands(activate) {
  if (!activate) {
    if (hasNextSection() &&
    (isDepositionOperation(getNextSection()) && (tool.type == getNextSection().getTool().type))) {
      return; // do not turn off deposition equipment when the next operation is using the same technology
    }
  }
 
  writeComment("PROCESS EQUIPMENT" + (activate ? " ON" : " OFF"));
  var _processEquipment = activate ? commands.processEquipment.on : commands.processEquipment.off;
  for (var i in _processEquipment) {
    writeBlock(_processEquipment[i]);
  }
}
 
/** Output layer information */
function onLayer(index) {
  var layerNumber = index + 1;
  writeComment("LAYER " + layerNumber + " START");
}
 
function onLayerEnd(index) {
  var layerNumber = index + 1;
  writeComment("LAYER " + layerNumber + " END");
}
 
var powerOn = false; // track power state
function onMovementDeposition(movement) {
  if (highFeedMapping != HIGH_FEED_NO_MAPPING) {
    error(localize("High feed mapping is not supported."));
    return;
  }
  if (movement == MOVEMENT_LINK_TRANSITION && getProperty("depositOnTransitions")) { // leave linking moves in active state
    return;
  }
  switch (movement) {
  case MOVEMENT_RAPID:
  case MOVEMENT_LEAD_IN:
  case MOVEMENT_LEAD_OUT:
  case MOVEMENT_LINK_TRANSITION:
    if (powerOn) {
      writeBlock(commands.deposition.off, "(STOP DEPOSITION)");
      powerOn = false;
    }
    break;
  case MOVEMENT_DEPOSITING:
    if (!powerOn) {
      writeBlock(commands.deposition.on, "(START DEPOSITION)");
      powerOn = true;
    }
    break;
  }
}
// End of Deposition logic
 
// ####
// #### The code below is only utilized to generate sample output and can be ignored ####
// ####
 
/**
  Writes the specified block.
*/
function writeBlock() {
  writeWords(arguments);
}
 
function formatComment(text) {
  return "(" + String(text).replace(/[()]/g, "") + ")";
}
 
/**
  Output a comment.
*/
function writeComment(text) {
  writeln(formatComment(text));
}
 
function onComment(message) {
  writeComment(message);
}
 
function onOpen() {
  writeComment("##########");
  writeComment("THIS POSTPROCESSOR IS A TEMPLATE FOR DEPOSITION SUPPORT, IT DOES NOT OUTPUT A FUNCTIONAL NC PROGRAM.");
  writeComment("##########");
}
 
function onRapid(_x, _y, _z) {
  var x = xOutput.format(_x);
  var y = yOutput.format(_y);
  var z = zOutput.format(_z);
  if (x || y || z) {
    writeBlock(gMotionModal.format(0), x, y, z);
    feedOutput.reset();
  }
}
 
function onLinear(_x, _y, _z, feed) {
  var x = xOutput.format(_x);
  var y = yOutput.format(_y);
  var z = zOutput.format(_z);
  var f = feedOutput.format(feed);
  if (x || y || z) {
    writeBlock(gMotionModal.format(1), x, y, z, f);
  } else if (f) {
    if (getNextRecord().isMotion()) { // try not to output feed without motion
      feedOutput.reset(); // force feed on next line
    } else {
      writeBlock(gMotionModal.format(1), f);
    }
  }
}
 
function onRapid5D(_x, _y, _z, _a, _b, _c) {
  var x = xOutput.format(_x);
  var y = yOutput.format(_y);
  var z = zOutput.format(_z);
  var a = aOutput.format(_a);
  var b = bOutput.format(_b);
  var c = cOutput.format(_c);
  if (x || y || z || a || b || c) {
    writeBlock(gMotionModal.format(0), x, y, z, a, b, c);
    feedOutput.reset();
  }
}
 
function onLinear5D(_x, _y, _z, _a, _b, _c, feed, feedMode) {
  var x = xOutput.format(_x);
  var y = yOutput.format(_y);
  var z = zOutput.format(_z);
  var a = aOutput.format(_a);
  var b = bOutput.format(_b);
  var c = cOutput.format(_c);
  var f = feedOutput.format(feed);
  if (x || y || z || a || b || c) {
    writeBlock(gMotionModal.format(1), x, y, z, a, b, c, f);
  }
}