Schemas / Print / FGF
rig.print.process
v0.31.0 · draft 5 fields 2 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
layerHeightMm |
float | required | Nominal layer height (mm) |
lineWidthMm |
float | required | Commanded bead width (mm) |
printSpeedMms |
float | optional | Printing move speed (mm/s) |
travelSpeedMms |
float | optional | Travel move speed (mm/s) |
adaptiveLayers |
bool | optional | Optional. Absent = false |
Slice process knobs. Line width is commanded and stays commanded - stack sag is rig.print.compression, not a width change. This is not a layout style and not envelope pdfX.
Required: layerHeightMm, lineWidthMm.
JSON Schema
Resolves at https://rig.works/schemas/rig.print.process.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.print.process.schema.json",
"title": "rig.print.process",
"type": "object",
"additionalProperties": false,
"properties": {
"layerHeightMm": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"lineWidthMm": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"printSpeedMms": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"travelSpeedMms": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"adaptiveLayers": {
"$ref": "./_defs.schema.json#/$defs/bool"
}
},
"required": [
"layerHeightMm",
"lineWidthMm"
]
}