PostExecutionCommand Panel
- Key Model
- Assistant Model
Layout
- Output Step Files Section
- Enable Write Step Files CheckBox
- The model is EnableWriteStepFiles.
- Step File Template Label
- Step File Template Text Field
- The model is StepFileTemplate.
- Default value: “Output/[NcName].step.csv”
- Apply one line layout to the label and the text field.
- Enable Write Step Files CheckBox
- Output Shot Files Section
Visible if EnablePhysics is true.
- Enable Write Shot Files CheckBox
- The model is EnableWriteShotFiles.
- Shot File Template Text Field
- The model is ShotFileTemplate.
- Default value:
Output/[NcName].shot.csv
- Shot File Time Resolution (ms) Number Field
- The model is ShotFileTimeResolution_ms.
- Default value: 1
- Enable Write Shot Files CheckBox
- Optimization Files Section
Visible if EnablePhysics is true.
- Enable Optimize To Files CheckBox
- The model is EnableOptimizeToFiles.
- Optimization File Template Text Field
- The model is OptimizationFileTemplate.
- Default value: “Output/Opt-[NcName]”
- Enable Optimize To Files CheckBox
- CL → NC Writeback Section
- Enable Convert CL To NC Files CheckBox
- The model is EnableConvertClToNcFiles.
- NC Output Template Text Field
- The model is ClToNcFileTemplate.
- Default value: “Output/[NcName].nc”
- Enable Convert CL To NC Files CheckBox
- Geometry Difference Section
- Enable Geom Diff CheckBox
- The model is EnableGeomDiff.
- Geom Diff Detect Radius Number Field (with Unit)
- One Line layout
- The model is GeomDiffDetectRadius_mm.
- Default value: 1
- Enable Geom Diff CheckBox
Note
Meshed-geometry output is no longer a Post-Execution section: a geometry snapshot can be taken at any spot of the mission, unlike the run-derived file outputs above. Use the standalone Record Meshed Geometry (RecordMeshedGeomCommand) or Export Meshed Geometry (ExportMeshedGeomToStlCommand) commands instead.
Source Code Path
See this page for git repository.
WPF Application Source Code Path
- Mission/PostExecutionCommandPanel
Web Page Application Source Code Path
HiNC-2025-webservice (Quasar CLI SPA):
wwwroot-src/src/components/mission/PostExecutionCommandPanel.vue— five cards: Step Files / Shot Files / Optimization / CL → NC Writeback / Geom Diff. Shot Files and Optimization cards are gated onappState.isShowPhysicsOptions(matches legacy). GeomDiff is embedded inline because it is a property onPostExecutionCommandrather than a standaloneISessionCommand.wwwroot-src/src/api/mission.ts— typed wrapper; usescommands/{path}/postexecution/*endpoints includingenable-geom-diff+geom-diff-detect-radius-mm.Missions/MissionController.cs— REST endpoints for PostExecution per-property PUTs.