Guest User

Untitled

a guest
May 26th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 362.01 KB | None | 0 0
  1. {
  2. "name": "FDM Printer Base Description",
  3. "version": 2,
  4. "metadata":
  5. {
  6. "type": "machine",
  7. "author": "Ultimaker",
  8. "category": "Other",
  9. "manufacturer": "Unknown",
  10. "setting_version": 1,
  11. "file_formats": "text/x-gcode;application/x-stl-ascii;application/x-stl-binary;application/x-wavefront-obj;application/x3g",
  12. "visible": false,
  13. "has_materials": true,
  14. "preferred_material": "generic_pla",
  15. "preferred_quality_type": "normal",
  16. "machine_extruder_trains":
  17. {
  18. "0": "fdmextruder"
  19. },
  20. "supports_usb_connection": true
  21. },
  22. "settings":
  23. {
  24. "machine_settings":
  25. {
  26. "label": "Machine",
  27. "type": "category",
  28. "description": "Machine specific settings",
  29. "icon": "category_machine",
  30. "children":
  31. {
  32. "machine_name":
  33. {
  34. "label": "Machine Type",
  35. "description": "The name of your 3D printer model.",
  36. "default_value": "Unknown",
  37. "type": "str",
  38. "settable_per_mesh": false,
  39. "settable_per_extruder": false,
  40. "settable_per_meshgroup": false
  41. },
  42. "machine_show_variants":
  43. {
  44. "label": "Show Machine Variants",
  45. "description": "Whether to show the different variants of this machine, which are described in separate json files.",
  46. "default_value": false,
  47. "type": "bool",
  48. "settable_per_mesh": false,
  49. "settable_per_extruder": false,
  50. "settable_per_meshgroup": false
  51. },
  52. "machine_start_gcode":
  53. {
  54. "label": "Start G-code",
  55. "description": "G-code commands to be executed at the very start - separated by \\n.",
  56. "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0",
  57. "type": "str",
  58. "settable_per_mesh": false,
  59. "settable_per_extruder": false,
  60. "settable_per_meshgroup": false
  61. },
  62. "machine_end_gcode":
  63. {
  64. "label": "End G-code",
  65. "description": "G-code commands to be executed at the very end - separated by \\n.",
  66. "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84",
  67. "type": "str",
  68. "settable_per_mesh": false,
  69. "settable_per_extruder": false,
  70. "settable_per_meshgroup": false
  71. },
  72. "material_guid":
  73. {
  74. "label": "Material GUID",
  75. "description": "GUID of the material. This is set automatically. ",
  76. "default_value": "",
  77. "type": "str",
  78. "enabled": false
  79. },
  80. "material_bed_temp_wait":
  81. {
  82. "label": "Wait for Build Plate Heatup",
  83. "description": "Whether to insert a command to wait until the build plate temperature is reached at the start.",
  84. "default_value": true,
  85. "type": "bool",
  86. "settable_per_mesh": false,
  87. "settable_per_extruder": false,
  88. "settable_per_meshgroup": false
  89. },
  90. "material_print_temp_wait":
  91. {
  92. "label": "Wait for Nozzle Heatup",
  93. "description": "Whether to wait until the nozzle temperature is reached at the start.",
  94. "default_value": true,
  95. "type": "bool",
  96. "enabled": "machine_nozzle_temp_enabled",
  97. "settable_per_mesh": false,
  98. "settable_per_extruder": false,
  99. "settable_per_meshgroup": false
  100. },
  101. "material_print_temp_prepend":
  102. {
  103. "label": "Include Material Temperatures",
  104. "description": "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting.",
  105. "default_value": true,
  106. "type": "bool",
  107. "enabled": "machine_nozzle_temp_enabled",
  108. "settable_per_mesh": false,
  109. "settable_per_extruder": false,
  110. "settable_per_meshgroup": false
  111. },
  112. "material_bed_temp_prepend":
  113. {
  114. "label": "Include Build Plate Temperature",
  115. "description": "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting.",
  116. "default_value": true,
  117. "type": "bool",
  118. "settable_per_mesh": false,
  119. "settable_per_extruder": false,
  120. "settable_per_meshgroup": false
  121. },
  122. "machine_width":
  123. {
  124. "label": "Machine Width",
  125. "description": "The width (X-direction) of the printable area.",
  126. "default_value": 100,
  127. "type": "float",
  128. "settable_per_mesh": false,
  129. "settable_per_extruder": false,
  130. "settable_per_meshgroup": false
  131. },
  132. "machine_depth":
  133. {
  134. "label": "Machine Depth",
  135. "description": "The depth (Y-direction) of the printable area.",
  136. "default_value": 100,
  137. "type": "float",
  138. "settable_per_mesh": false,
  139. "settable_per_extruder": false,
  140. "settable_per_meshgroup": false
  141. },
  142. "machine_shape":
  143. {
  144. "label": "Build Plate Shape",
  145. "description": "The shape of the build plate without taking unprintable areas into account.",
  146. "default_value": "rectangular",
  147. "type": "enum",
  148. "options":
  149. {
  150. "rectangular": "Rectangular",
  151. "elliptic": "Elliptic"
  152. },
  153. "settable_per_mesh": false,
  154. "settable_per_extruder": false,
  155. "settable_per_meshgroup": false
  156. },
  157. "machine_buildplate_type":
  158. {
  159. "label": "Build Plate Material",
  160. "description": "The material of the build plate installed on the printer.",
  161. "default_value": "glass",
  162. "type": "enum",
  163. "options":
  164. {
  165. "glass": "Glass",
  166. "aluminum": "Aluminum"
  167. },
  168. "settable_per_mesh": false,
  169. "settable_per_extruder": false,
  170. "settable_per_meshgroup": false
  171. },
  172. "machine_height":
  173. {
  174. "label": "Machine Height",
  175. "description": "The height (Z-direction) of the printable area.",
  176. "default_value": 100,
  177. "type": "float",
  178. "settable_per_mesh": false,
  179. "settable_per_extruder": false,
  180. "settable_per_meshgroup": false
  181. },
  182. "machine_heated_bed":
  183. {
  184. "label": "Has Heated Build Plate",
  185. "description": "Whether the machine has a heated build plate present.",
  186. "default_value": false,
  187. "type": "bool",
  188. "settable_per_mesh": false,
  189. "settable_per_extruder": false,
  190. "settable_per_meshgroup": false
  191. },
  192. "machine_center_is_zero":
  193. {
  194. "label": "Is Center Origin",
  195. "description": "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area.",
  196. "default_value": false,
  197. "type": "bool",
  198. "settable_per_mesh": false,
  199. "settable_per_extruder": false,
  200. "settable_per_meshgroup": false
  201. },
  202. "machine_extruder_count":
  203. {
  204. "label": "Number of Extruders",
  205. "description": "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle.",
  206. "default_value": 1,
  207. "minimum_value": "1",
  208. "maximum_value": "16",
  209. "type": "int",
  210. "settable_per_mesh": false,
  211. "settable_per_extruder": false,
  212. "settable_per_meshgroup": false
  213. },
  214. "extruders_enabled_count":
  215. {
  216. "label": "Number of Extruders that are enabled",
  217. "description": "Number of extruder trains that are enabled; automatically set in software",
  218. "value": "machine_extruder_count",
  219. "minimum_value": "1",
  220. "maximum_value": "16",
  221. "type": "int",
  222. "settable_per_mesh": false,
  223. "settable_per_extruder": false,
  224. "settable_per_meshgroup": false
  225. },
  226. "machine_nozzle_tip_outer_diameter":
  227. {
  228. "label": "Outer nozzle diameter",
  229. "description": "The outer diameter of the tip of the nozzle.",
  230. "default_value": 1,
  231. "type": "float",
  232. "settable_per_mesh": false,
  233. "settable_per_extruder": true,
  234. "settable_per_meshgroup": false,
  235. "settable_globally": false
  236. },
  237. "machine_nozzle_head_distance":
  238. {
  239. "label": "Nozzle length",
  240. "description": "The height difference between the tip of the nozzle and the lowest part of the print head.",
  241. "default_value": 3,
  242. "type": "float",
  243. "settable_per_mesh": false,
  244. "settable_per_extruder": true,
  245. "settable_per_meshgroup": false
  246. },
  247. "machine_nozzle_expansion_angle":
  248. {
  249. "label": "Nozzle angle",
  250. "description": "The angle between the horizontal plane and the conical part right above the tip of the nozzle.",
  251. "unit": "°",
  252. "type": "int",
  253. "default_value": 45,
  254. "maximum_value": "89",
  255. "minimum_value": "1",
  256. "settable_per_mesh": false,
  257. "settable_per_extruder": false,
  258. "settable_per_meshgroup": false
  259. },
  260. "machine_heat_zone_length":
  261. {
  262. "label": "Heat zone length",
  263. "description": "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament.",
  264. "default_value": 16,
  265. "type": "float",
  266. "settable_per_mesh": false,
  267. "settable_per_extruder": true,
  268. "settable_per_meshgroup": false
  269. },
  270. "machine_filament_park_distance":
  271. {
  272. "label": "Filament Park Distance",
  273. "description": "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used.",
  274. "default_value": 16,
  275. "value": "machine_heat_zone_length",
  276. "type": "float",
  277. "settable_per_mesh": false,
  278. "settable_per_extruder": true,
  279. "settable_per_meshgroup": false
  280. },
  281. "machine_nozzle_temp_enabled":
  282. {
  283. "label": "Enable Nozzle Temperature Control",
  284. "description": "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura.",
  285. "default_value": true,
  286. "value": "machine_gcode_flavor != \"UltiGCode\"",
  287. "type": "bool",
  288. "settable_per_mesh": false,
  289. "settable_per_extruder": true,
  290. "settable_per_meshgroup": false
  291. },
  292. "machine_nozzle_heat_up_speed":
  293. {
  294. "label": "Heat up speed",
  295. "description": "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature.",
  296. "default_value": 2.0,
  297. "unit": "°C/s",
  298. "type": "float",
  299. "enabled": "machine_nozzle_temp_enabled",
  300. "settable_per_mesh": false,
  301. "settable_per_extruder": true
  302. },
  303. "machine_nozzle_cool_down_speed":
  304. {
  305. "label": "Cool down speed",
  306. "description": "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature.",
  307. "default_value": 2.0,
  308. "unit": "°C/s",
  309. "type": "float",
  310. "enabled": "machine_nozzle_temp_enabled",
  311. "settable_per_mesh": false,
  312. "settable_per_extruder": true
  313. },
  314. "machine_min_cool_heat_time_window":
  315. {
  316. "label": "Minimal Time Standby Temperature",
  317. "description": "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature.",
  318. "default_value": 50.0,
  319. "unit": "s",
  320. "type": "float",
  321. "enabled": "machine_nozzle_temp_enabled",
  322. "settable_per_mesh": false,
  323. "settable_per_extruder": true
  324. },
  325. "machine_gcode_flavor":
  326. {
  327. "label": "G-code flavour",
  328. "description": "The type of g-code to be generated.",
  329. "type": "enum",
  330. "options":
  331. {
  332. "RepRap (Marlin/Sprinter)": "Marlin",
  333. "RepRap (Volumetric)": "Marlin (Volumetric)",
  334. "RepRap (RepRap)": "RepRap",
  335. "UltiGCode": "Ultimaker 2",
  336. "Griffin": "Griffin",
  337. "Makerbot": "Makerbot",
  338. "BFB": "Bits from Bytes",
  339. "MACH3": "Mach3",
  340. "Repetier": "Repetier"
  341. },
  342. "default_value": "RepRap (Marlin/Sprinter)",
  343. "settable_per_mesh": false,
  344. "settable_per_extruder": false,
  345. "settable_per_meshgroup": false
  346. },
  347. "machine_firmware_retract":
  348. {
  349. "label": "Firmware Retraction",
  350. "description": "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material.",
  351. "type": "bool",
  352. "default_value": false,
  353. "value": "machine_gcode_flavor == 'RepRap (Volumetric)' or machine_gcode_flavor == 'UltiGCode' or machine_gcode_flavor == 'BFB'",
  354. "settable_per_mesh": false,
  355. "settable_per_extruder": false,
  356. "settable_per_meshgroup": false
  357. },
  358. "machine_disallowed_areas":
  359. {
  360. "label": "Disallowed areas",
  361. "description": "A list of polygons with areas the print head is not allowed to enter.",
  362. "type": "polygons",
  363. "default_value":
  364. [
  365. ],
  366. "settable_per_mesh": false,
  367. "settable_per_extruder": false,
  368. "settable_per_meshgroup": false
  369. },
  370. "nozzle_disallowed_areas":
  371. {
  372. "label": "Nozzle Disallowed Areas",
  373. "description": "A list of polygons with areas the nozzle is not allowed to enter.",
  374. "type": "polygons",
  375. "default_value":
  376. [
  377. ],
  378. "settable_per_mesh": false,
  379. "settable_per_extruder": false,
  380. "settable_per_meshgroup": false
  381. },
  382. "machine_head_polygon":
  383. {
  384. "label": "Machine head polygon",
  385. "description": "A 2D silhouette of the print head (fan caps excluded).",
  386. "type": "polygon",
  387. "default_value":
  388. [
  389. [
  390. -1,
  391. 1
  392. ],
  393. [
  394. -1,
  395. -1
  396. ],
  397. [
  398. 1,
  399. -1
  400. ],
  401. [
  402. 1,
  403. 1
  404. ]
  405. ],
  406. "settable_per_mesh": false,
  407. "settable_per_extruder": false,
  408. "settable_per_meshgroup": false
  409. },
  410. "machine_head_with_fans_polygon":
  411. {
  412. "label": "Machine head & Fan polygon",
  413. "description": "A 2D silhouette of the print head (fan caps included).",
  414. "type": "polygon",
  415. "default_value":
  416. [
  417. [
  418. -20,
  419. 10
  420. ],
  421. [
  422. 10,
  423. 10
  424. ],
  425. [
  426. 10,
  427. -10
  428. ],
  429. [
  430. -20,
  431. -10
  432. ]
  433. ],
  434. "settable_per_mesh": false,
  435. "settable_per_extruder": false,
  436. "settable_per_meshgroup": false
  437. },
  438. "gantry_height":
  439. {
  440. "label": "Gantry height",
  441. "description": "The height difference between the tip of the nozzle and the gantry system (X and Y axes).",
  442. "default_value": 99999999999,
  443. "type": "float",
  444. "settable_per_mesh": false,
  445. "settable_per_extruder": false,
  446. "settable_per_meshgroup": false
  447. },
  448. "machine_nozzle_id":
  449. {
  450. "label": "Nozzle ID",
  451. "description": "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\".",
  452. "type": "str",
  453. "default_value": "unknown",
  454. "settable_per_mesh": false,
  455. "settable_per_extruder": true
  456. },
  457. "machine_nozzle_size":
  458. {
  459. "label": "Nozzle Diameter",
  460. "description": "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size.",
  461. "unit": "mm",
  462. "type": "float",
  463. "default_value": 0.4,
  464. "minimum_value": "0.001",
  465. "maximum_value_warning": "10",
  466. "settable_per_mesh": false,
  467. "settable_per_extruder": true
  468. },
  469. "machine_use_extruder_offset_to_offset_coords":
  470. {
  471. "label": "Offset With Extruder",
  472. "description": "Apply the extruder offset to the coordinate system.",
  473. "type": "bool",
  474. "default_value": true,
  475. "settable_per_mesh": false,
  476. "settable_per_extruder": false,
  477. "settable_per_meshgroup": false
  478. },
  479. "extruder_prime_pos_z":
  480. {
  481. "label": "Extruder Prime Z Position",
  482. "description": "The Z coordinate of the position where the nozzle primes at the start of printing.",
  483. "type": "float",
  484. "unit": "mm",
  485. "default_value": 0,
  486. "minimum_value_warning": "0",
  487. "maximum_value": "machine_height",
  488. "settable_per_mesh": false,
  489. "settable_per_extruder": true
  490. },
  491. "extruder_prime_pos_abs":
  492. {
  493. "label": "Absolute Extruder Prime Position",
  494. "description": "Make the extruder prime position absolute rather than relative to the last-known location of the head.",
  495. "type": "bool",
  496. "default_value": false,
  497. "settable_per_mesh": false,
  498. "settable_per_extruder": true
  499. },
  500. "machine_max_feedrate_x":
  501. {
  502. "label": "Maximum Speed X",
  503. "description": "The maximum speed for the motor of the X-direction.",
  504. "unit": "mm/s",
  505. "type": "float",
  506. "default_value": 500,
  507. "settable_per_mesh": false,
  508. "settable_per_extruder": false,
  509. "settable_per_meshgroup": false
  510. },
  511. "machine_max_feedrate_y":
  512. {
  513. "label": "Maximum Speed Y",
  514. "description": "The maximum speed for the motor of the Y-direction.",
  515. "unit": "mm/s",
  516. "type": "float",
  517. "default_value": 500,
  518. "settable_per_mesh": false,
  519. "settable_per_extruder": false,
  520. "settable_per_meshgroup": false
  521. },
  522. "machine_max_feedrate_z":
  523. {
  524. "label": "Maximum Speed Z",
  525. "description": "The maximum speed for the motor of the Z-direction.",
  526. "unit": "mm/s",
  527. "type": "float",
  528. "default_value": 5,
  529. "settable_per_mesh": false,
  530. "settable_per_extruder": false,
  531. "settable_per_meshgroup": false
  532. },
  533. "machine_max_feedrate_e":
  534. {
  535. "label": "Maximum Feedrate",
  536. "description": "The maximum speed of the filament.",
  537. "unit": "mm/s",
  538. "type": "float",
  539. "default_value": 299792458000,
  540. "settable_per_mesh": false,
  541. "settable_per_extruder": false,
  542. "settable_per_meshgroup": false
  543. },
  544. "machine_max_acceleration_x":
  545. {
  546. "label": "Maximum Acceleration X",
  547. "description": "Maximum acceleration for the motor of the X-direction",
  548. "unit": "mm/s²",
  549. "type": "float",
  550. "default_value": 9000,
  551. "settable_per_mesh": false,
  552. "settable_per_extruder": false,
  553. "settable_per_meshgroup": false
  554. },
  555. "machine_max_acceleration_y":
  556. {
  557. "label": "Maximum Acceleration Y",
  558. "description": "Maximum acceleration for the motor of the Y-direction.",
  559. "unit": "mm/s²",
  560. "type": "float",
  561. "default_value": 9000,
  562. "settable_per_mesh": false,
  563. "settable_per_extruder": false,
  564. "settable_per_meshgroup": false
  565. },
  566. "machine_max_acceleration_z":
  567. {
  568. "label": "Maximum Acceleration Z",
  569. "description": "Maximum acceleration for the motor of the Z-direction.",
  570. "unit": "mm/s²",
  571. "type": "float",
  572. "default_value": 100,
  573. "settable_per_mesh": false,
  574. "settable_per_extruder": false,
  575. "settable_per_meshgroup": false
  576. },
  577. "machine_max_acceleration_e":
  578. {
  579. "label": "Maximum Filament Acceleration",
  580. "description": "Maximum acceleration for the motor of the filament.",
  581. "unit": "mm/s²",
  582. "type": "float",
  583. "default_value": 10000,
  584. "settable_per_mesh": false,
  585. "settable_per_extruder": false,
  586. "settable_per_meshgroup": false
  587. },
  588. "machine_acceleration":
  589. {
  590. "label": "Default Acceleration",
  591. "description": "The default acceleration of print head movement.",
  592. "unit": "mm/s²",
  593. "type": "float",
  594. "default_value": 4000,
  595. "settable_per_mesh": false,
  596. "settable_per_extruder": false,
  597. "settable_per_meshgroup": false
  598. },
  599. "machine_max_jerk_xy":
  600. {
  601. "label": "Default X-Y Jerk",
  602. "description": "Default jerk for movement in the horizontal plane.",
  603. "unit": "mm/s",
  604. "type": "float",
  605. "default_value": 20.0,
  606. "minimum_value": "0",
  607. "settable_per_mesh": false,
  608. "settable_per_extruder": false,
  609. "settable_per_meshgroup": false
  610. },
  611. "machine_max_jerk_z":
  612. {
  613. "label": "Default Z Jerk",
  614. "description": "Default jerk for the motor of the Z-direction.",
  615. "unit": "mm/s",
  616. "type": "float",
  617. "default_value": 0.4,
  618. "minimum_value": "0",
  619. "settable_per_mesh": false,
  620. "settable_per_extruder": false,
  621. "settable_per_meshgroup": false
  622. },
  623. "machine_max_jerk_e":
  624. {
  625. "label": "Default Filament Jerk",
  626. "description": "Default jerk for the motor of the filament.",
  627. "unit": "mm/s",
  628. "type": "float",
  629. "default_value": 5.0,
  630. "minimum_value": "0",
  631. "settable_per_mesh": false,
  632. "settable_per_extruder": false,
  633. "settable_per_meshgroup": false
  634. },
  635. "machine_steps_per_mm_x":
  636. {
  637. "label": "Steps per Millimeter (X)",
  638. "description": "How many steps of the stepper motor will result in one millimeter of movement in the X direction.",
  639. "type": "int",
  640. "default_value": 50,
  641. "minimum_value": "0.0000001",
  642. "settable_per_mesh": false,
  643. "settable_per_extruder": true
  644. },
  645. "machine_steps_per_mm_y":
  646. {
  647. "label": "Steps per Millimeter (Y)",
  648. "description": "How many steps of the stepper motor will result in one millimeter of movement in the Y direction.",
  649. "type": "int",
  650. "default_value": 50,
  651. "minimum_value": "0.0000001",
  652. "settable_per_mesh": false,
  653. "settable_per_extruder": true
  654. },
  655. "machine_steps_per_mm_z":
  656. {
  657. "label": "Steps per Millimeter (Z)",
  658. "description": "How many steps of the stepper motor will result in one millimeter of movement in the Z direction.",
  659. "type": "int",
  660. "default_value": 50,
  661. "minimum_value": "0.0000001",
  662. "settable_per_mesh": false,
  663. "settable_per_extruder": true
  664. },
  665. "machine_steps_per_mm_e":
  666. {
  667. "label": "Steps per Millimeter (E)",
  668. "description": "How many steps of the stepper motors will result in one millimeter of extrusion.",
  669. "type": "int",
  670. "default_value": 1600,
  671. "minimum_value": "0.0000001",
  672. "settable_per_mesh": false,
  673. "settable_per_extruder": true
  674. },
  675. "machine_endstop_positive_direction_x":
  676. {
  677. "label": "X Endstop in Positive Direction",
  678. "description": "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate).",
  679. "type": "bool",
  680. "default_value": false,
  681. "settable_per_mesh": false,
  682. "settable_per_extruder": true
  683. },
  684. "machine_endstop_positive_direction_y":
  685. {
  686. "label": "Y Endstop in Positive Direction",
  687. "description": "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate).",
  688. "type": "bool",
  689. "default_value": false,
  690. "settable_per_mesh": false,
  691. "settable_per_extruder": true
  692. },
  693. "machine_endstop_positive_direction_z":
  694. {
  695. "label": "Z Endstop in Positive Direction",
  696. "description": "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate).",
  697. "type": "bool",
  698. "default_value": true,
  699. "settable_per_mesh": false,
  700. "settable_per_extruder": true
  701. },
  702. "machine_minimum_feedrate":
  703. {
  704. "label": "Minimum Feedrate",
  705. "description": "The minimal movement speed of the print head.",
  706. "unit": "mm/s",
  707. "type": "float",
  708. "default_value": 0.0,
  709. "settable_per_mesh": false,
  710. "settable_per_extruder": false,
  711. "settable_per_meshgroup": false
  712. },
  713. "machine_feeder_wheel_diameter":
  714. {
  715. "label": "Feeder Wheel Diameter",
  716. "description": "The diameter of the wheel that drives the material in the feeder.",
  717. "unit": "mm",
  718. "type": "float",
  719. "default_value": 10.0,
  720. "settable_per_mesh": false,
  721. "settable_per_extruder": true
  722. }
  723. }
  724. },
  725. "resolution":
  726. {
  727. "label": "Quality",
  728. "type": "category",
  729. "icon": "category_layer_height",
  730. "description": "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)",
  731. "children":
  732. {
  733. "layer_height":
  734. {
  735. "label": "Layer Height",
  736. "description": "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution.",
  737. "unit": "mm",
  738. "type": "float",
  739. "default_value": 0.1,
  740. "minimum_value": "0.001",
  741. "minimum_value_warning": "0.04",
  742. "maximum_value_warning": "0.8 * min(extruderValues('machine_nozzle_size'))",
  743. "settable_per_mesh": false,
  744. "settable_per_extruder": false
  745. },
  746. "layer_height_0":
  747. {
  748. "label": "Initial Layer Height",
  749. "description": "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier.",
  750. "unit": "mm",
  751. "type": "float",
  752. "default_value": 0.3,
  753. "resolve": "min(extruderValues('layer_height_0'))",
  754. "minimum_value": "0.001",
  755. "minimum_value_warning": "0.1",
  756. "maximum_value_warning": "0.8 * min(extruderValues('machine_nozzle_size'))",
  757. "settable_per_mesh": false,
  758. "settable_per_extruder": false
  759. },
  760. "line_width":
  761. {
  762. "label": "Line Width",
  763. "description": "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints.",
  764. "unit": "mm",
  765. "minimum_value": "0.001",
  766. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  767. "maximum_value_warning": "2 * machine_nozzle_size",
  768. "default_value": 0.4,
  769. "type": "float",
  770. "value": "machine_nozzle_size",
  771. "settable_per_mesh": true,
  772. "children":
  773. {
  774. "wall_line_width":
  775. {
  776. "label": "Wall Line Width",
  777. "description": "Width of a single wall line.",
  778. "unit": "mm",
  779. "minimum_value": "0.001",
  780. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  781. "maximum_value_warning": "2 * machine_nozzle_size",
  782. "value": "line_width",
  783. "default_value": 0.4,
  784. "type": "float",
  785. "limit_to_extruder": "wall_0_extruder_nr if wall_x_extruder_nr == wall_0_extruder_nr else -1",
  786. "settable_per_mesh": true,
  787. "children":
  788. {
  789. "wall_line_width_0":
  790. {
  791. "label": "Outer Wall Line Width",
  792. "description": "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed.",
  793. "unit": "mm",
  794. "minimum_value": "0.001",
  795. "minimum_value_warning": "(0.1 + 0.4 * machine_nozzle_size) if outer_inset_first else 0.1 * machine_nozzle_size",
  796. "maximum_value_warning": "2 * machine_nozzle_size",
  797. "default_value": 0.4,
  798. "value": "wall_line_width",
  799. "type": "float",
  800. "limit_to_extruder": "wall_0_extruder_nr",
  801. "settable_per_mesh": true
  802. },
  803. "wall_line_width_x":
  804. {
  805. "label": "Inner Wall(s) Line Width",
  806. "description": "Width of a single wall line for all wall lines except the outermost one.",
  807. "unit": "mm",
  808. "minimum_value": "0.001",
  809. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  810. "maximum_value_warning": "2 * machine_nozzle_size",
  811. "default_value": 0.4,
  812. "value": "wall_line_width",
  813. "type": "float",
  814. "limit_to_extruder": "wall_x_extruder_nr",
  815. "settable_per_mesh": true
  816. }
  817. }
  818. },
  819. "skin_line_width":
  820. {
  821. "label": "Top/Bottom Line Width",
  822. "description": "Width of a single top/bottom line.",
  823. "unit": "mm",
  824. "minimum_value": "0.001",
  825. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  826. "maximum_value_warning": "2 * machine_nozzle_size",
  827. "default_value": 0.4,
  828. "type": "float",
  829. "value": "line_width",
  830. "limit_to_extruder": "top_bottom_extruder_nr",
  831. "settable_per_mesh": true
  832. },
  833. "infill_line_width":
  834. {
  835. "label": "Infill Line Width",
  836. "description": "Width of a single infill line.",
  837. "unit": "mm",
  838. "minimum_value": "0.001",
  839. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  840. "maximum_value_warning": "3 * machine_nozzle_size",
  841. "default_value": 0.4,
  842. "type": "float",
  843. "value": "line_width",
  844. "enabled": "infill_sparse_density > 0",
  845. "limit_to_extruder": "infill_extruder_nr",
  846. "settable_per_mesh": true
  847. },
  848. "skirt_brim_line_width":
  849. {
  850. "label": "Skirt/Brim Line Width",
  851. "description": "Width of a single skirt or brim line.",
  852. "unit": "mm",
  853. "minimum_value": "0.001",
  854. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  855. "maximum_value_warning": "3 * machine_nozzle_size",
  856. "default_value": 0.4,
  857. "type": "float",
  858. "value": "line_width",
  859. "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim'",
  860. "settable_per_mesh": false,
  861. "settable_per_extruder": true
  862. },
  863. "support_line_width":
  864. {
  865. "label": "Support Line Width",
  866. "description": "Width of a single support structure line.",
  867. "unit": "mm",
  868. "minimum_value": "0.001",
  869. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  870. "maximum_value_warning": "3 * machine_nozzle_size",
  871. "default_value": 0.4,
  872. "type": "float",
  873. "enabled": "support_enable",
  874. "value": "line_width",
  875. "limit_to_extruder": "support_infill_extruder_nr",
  876. "settable_per_mesh": false,
  877. "settable_per_extruder": true
  878. },
  879. "support_interface_line_width":
  880. {
  881. "label": "Support Interface Line Width",
  882. "description": "Width of a single line of support roof or floor.",
  883. "unit": "mm",
  884. "default_value": 0.4,
  885. "minimum_value": "0.001",
  886. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  887. "maximum_value_warning": "2 * machine_nozzle_size",
  888. "type": "float",
  889. "enabled": "support_enable and support_interface_enable",
  890. "limit_to_extruder": "support_interface_extruder_nr",
  891. "value": "line_width",
  892. "settable_per_mesh": false,
  893. "settable_per_extruder": true,
  894. "children":
  895. {
  896. "support_roof_line_width":
  897. {
  898. "label": "Support Roof Line Width",
  899. "description": "Width of a single support roof line.",
  900. "unit": "mm",
  901. "default_value": 0.4,
  902. "minimum_value": "0.001",
  903. "minimum_value_warning": "0.4 * machine_nozzle_size",
  904. "maximum_value_warning": "2 * machine_nozzle_size",
  905. "type": "float",
  906. "enabled": "support_enable and support_roof_enable",
  907. "limit_to_extruder": "support_roof_extruder_nr",
  908. "value": "extruderValue(support_roof_extruder_nr, 'support_interface_line_width')",
  909. "settable_per_mesh": false,
  910. "settable_per_extruder": true
  911. },
  912. "support_bottom_line_width":
  913. {
  914. "label": "Support Floor Line Width",
  915. "description": "Width of a single support floor line.",
  916. "unit": "mm",
  917. "default_value": 0.4,
  918. "minimum_value": "0.001",
  919. "minimum_value_warning": "0.4 * machine_nozzle_size",
  920. "maximum_value_warning": "2 * machine_nozzle_size",
  921. "type": "float",
  922. "enabled": "support_enable and support_bottom_enable",
  923. "limit_to_extruder": "support_bottom_extruder_nr",
  924. "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_line_width')",
  925. "settable_per_mesh": false,
  926. "settable_per_extruder": true
  927. }
  928. }
  929. },
  930. "prime_tower_line_width":
  931. {
  932. "label": "Prime Tower Line Width",
  933. "description": "Width of a single prime tower line.",
  934. "type": "float",
  935. "unit": "mm",
  936. "enabled": "resolveOrValue('prime_tower_enable')",
  937. "default_value": 0.4,
  938. "value": "line_width",
  939. "minimum_value": "0.001",
  940. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  941. "maximum_value_warning": "2 * machine_nozzle_size",
  942. "settable_per_mesh": false,
  943. "settable_per_extruder": true
  944. },
  945. "initial_layer_line_width_factor":
  946. {
  947. "label": "Initial Layer Line Width",
  948. "description": "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion.",
  949. "type": "float",
  950. "unit": "%",
  951. "default_value": 100.0,
  952. "minimum_value": "0.001",
  953. "maximum_value_warning": "150",
  954. "settable_per_mesh": false,
  955. "settable_per_extruder": true
  956. }
  957. }
  958. }
  959. }
  960. },
  961. "shell":
  962. {
  963. "label": "Shell",
  964. "icon": "category_shell",
  965. "description": "Shell",
  966. "type": "category",
  967. "children":
  968. {
  969. "wall_extruder_nr":
  970. {
  971. "label": "Wall Extruder",
  972. "description": "The extruder train used for printing the walls. This is used in multi-extrusion.",
  973. "type": "optional_extruder",
  974. "default_value": "-1",
  975. "settable_per_mesh": false,
  976. "settable_per_extruder": false,
  977. "settable_per_meshgroup": true,
  978. "settable_globally": true,
  979. "enabled": "extruders_enabled_count > 1",
  980. "children": {
  981. "wall_0_extruder_nr":
  982. {
  983. "label": "Outer Wall Extruder",
  984. "description": "The extruder train used for printing the outer wall. This is used in multi-extrusion.",
  985. "type": "optional_extruder",
  986. "value": "wall_extruder_nr",
  987. "default_value": "-1",
  988. "settable_per_mesh": false,
  989. "settable_per_extruder": false,
  990. "settable_per_meshgroup": true,
  991. "settable_globally": true,
  992. "enabled": "extruders_enabled_count > 1"
  993. },
  994. "wall_x_extruder_nr":
  995. {
  996. "label": "Inner Wall Extruder",
  997. "description": "The extruder train used for printing the inner walls. This is used in multi-extrusion.",
  998. "type": "optional_extruder",
  999. "value": "wall_extruder_nr",
  1000. "default_value": "-1",
  1001. "settable_per_mesh": false,
  1002. "settable_per_extruder": false,
  1003. "settable_per_meshgroup": true,
  1004. "settable_globally": true,
  1005. "enabled": "extruders_enabled_count > 1"
  1006. }
  1007. }
  1008. },
  1009. "wall_thickness":
  1010. {
  1011. "label": "Wall Thickness",
  1012. "description": "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls.",
  1013. "unit": "mm",
  1014. "default_value": 0.8,
  1015. "minimum_value": "0",
  1016. "minimum_value_warning": "line_width",
  1017. "maximum_value_warning": "10 * line_width",
  1018. "type": "float",
  1019. "limit_to_extruder": "wall_x_extruder_nr",
  1020. "settable_per_mesh": true,
  1021. "children":
  1022. {
  1023. "wall_line_count":
  1024. {
  1025. "label": "Wall Line Count",
  1026. "description": "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number.",
  1027. "default_value": 2,
  1028. "minimum_value": "0",
  1029. "minimum_value_warning": "1",
  1030. "maximum_value_warning": "10",
  1031. "type": "int",
  1032. "value": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1) if wall_thickness != 0 else 0",
  1033. "limit_to_extruder": "wall_x_extruder_nr",
  1034. "settable_per_mesh": true
  1035. }
  1036. }
  1037. },
  1038. "wall_0_wipe_dist":
  1039. {
  1040. "label": "Outer Wall Wipe Distance",
  1041. "description": "Distance of a travel move inserted after the outer wall, to hide the Z seam better.",
  1042. "unit": "mm",
  1043. "type": "float",
  1044. "default_value": 0.2,
  1045. "value": "machine_nozzle_size / 2",
  1046. "minimum_value": "0",
  1047. "maximum_value_warning": "machine_nozzle_size * 2",
  1048. "limit_to_extruder": "wall_0_extruder_nr",
  1049. "settable_per_mesh": true
  1050. },
  1051. "roofing_extruder_nr":
  1052. {
  1053. "label": "Top Surface Skin Extruder",
  1054. "description": "The extruder train used for printing the top most skin. This is used in multi-extrusion.",
  1055. "type": "optional_extruder",
  1056. "default_value": "-1",
  1057. "value": "top_bottom_extruder_nr",
  1058. "settable_per_mesh": false,
  1059. "settable_per_extruder": false,
  1060. "settable_per_meshgroup": true,
  1061. "settable_globally": true,
  1062. "enabled": "extruders_enabled_count > 1 and max(extruderValues('roofing_layer_count')) > 0 and max(extruderValues('top_layers')) > 0"
  1063. },
  1064. "roofing_layer_count":
  1065. {
  1066. "label": "Top Surface Skin Layers",
  1067. "description": "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces.",
  1068. "default_value": 0,
  1069. "minimum_value": "0",
  1070. "maximum_value_warning": "top_layers - 1",
  1071. "type": "int",
  1072. "value": "0",
  1073. "limit_to_extruder": "roofing_extruder_nr",
  1074. "settable_per_mesh": true,
  1075. "enabled": "top_layers > 0"
  1076. },
  1077. "top_bottom_extruder_nr":
  1078. {
  1079. "label": "Top/Bottom Extruder",
  1080. "description": "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion.",
  1081. "type": "optional_extruder",
  1082. "default_value": "-1",
  1083. "settable_per_mesh": false,
  1084. "settable_per_extruder": false,
  1085. "settable_per_meshgroup": true,
  1086. "settable_globally": true,
  1087. "enabled": "extruders_enabled_count > 1"
  1088. },
  1089. "top_bottom_thickness":
  1090. {
  1091. "label": "Top/Bottom Thickness",
  1092. "description": "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers.",
  1093. "unit": "mm",
  1094. "default_value": 0.8,
  1095. "minimum_value": "0",
  1096. "minimum_value_warning": "0.6",
  1097. "maximum_value": "machine_height",
  1098. "type": "float",
  1099. "limit_to_extruder": "top_bottom_extruder_nr",
  1100. "settable_per_mesh": true,
  1101. "children":
  1102. {
  1103. "top_thickness":
  1104. {
  1105. "label": "Top Thickness",
  1106. "description": "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers.",
  1107. "unit": "mm",
  1108. "default_value": 0.8,
  1109. "minimum_value": "0",
  1110. "minimum_value_warning": "0.2 + resolveOrValue('layer_height')",
  1111. "maximum_value": "machine_height",
  1112. "type": "float",
  1113. "value": "top_bottom_thickness",
  1114. "limit_to_extruder": "top_bottom_extruder_nr",
  1115. "settable_per_mesh": true,
  1116. "children":
  1117. {
  1118. "top_layers":
  1119. {
  1120. "label": "Top Layers",
  1121. "description": "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number.",
  1122. "default_value": 8,
  1123. "minimum_value": "0",
  1124. "maximum_value_warning": "100",
  1125. "type": "int",
  1126. "minimum_value_warning": "2",
  1127. "value": "0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))",
  1128. "limit_to_extruder": "top_bottom_extruder_nr",
  1129. "settable_per_mesh": true
  1130. }
  1131. }
  1132. },
  1133. "bottom_thickness":
  1134. {
  1135. "label": "Bottom Thickness",
  1136. "description": "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers.",
  1137. "unit": "mm",
  1138. "default_value": 0.6,
  1139. "minimum_value": "0",
  1140. "minimum_value_warning": "0.2 + resolveOrValue('layer_height')",
  1141. "type": "float",
  1142. "value": "top_bottom_thickness",
  1143. "maximum_value": "machine_height",
  1144. "limit_to_extruder": "top_bottom_extruder_nr",
  1145. "settable_per_mesh": true,
  1146. "children":
  1147. {
  1148. "bottom_layers":
  1149. {
  1150. "label": "Bottom Layers",
  1151. "description": "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number.",
  1152. "minimum_value": "0",
  1153. "minimum_value_warning": "2",
  1154. "default_value": 6,
  1155. "type": "int",
  1156. "value": "999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))",
  1157. "limit_to_extruder": "top_bottom_extruder_nr",
  1158. "settable_per_mesh": true
  1159. }
  1160. }
  1161. }
  1162. }
  1163. },
  1164. "top_bottom_pattern":
  1165. {
  1166. "label": "Top/Bottom Pattern",
  1167. "description": "The pattern of the top/bottom layers.",
  1168. "type": "enum",
  1169. "options":
  1170. {
  1171. "lines": "Lines",
  1172. "concentric": "Concentric",
  1173. "zigzag": "Zig Zag"
  1174. },
  1175. "default_value": "lines",
  1176. "limit_to_extruder": "top_bottom_extruder_nr",
  1177. "settable_per_mesh": true
  1178. },
  1179. "top_bottom_pattern_0":
  1180. {
  1181. "label": "Bottom Pattern Initial Layer",
  1182. "description": "The pattern on the bottom of the print on the first layer.",
  1183. "type": "enum",
  1184. "options":
  1185. {
  1186. "lines": "Lines",
  1187. "concentric": "Concentric",
  1188. "zigzag": "Zig Zag"
  1189. },
  1190. "default_value": "lines",
  1191. "value": "top_bottom_pattern",
  1192. "limit_to_extruder": "top_bottom_extruder_nr",
  1193. "settable_per_mesh": true
  1194. },
  1195. "skin_angles":
  1196. {
  1197. "label": "Top/Bottom Line Directions",
  1198. "description": "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees).",
  1199. "type": "[int]",
  1200. "default_value": "[ ]",
  1201. "enabled": "top_bottom_pattern != 'concentric'",
  1202. "limit_to_extruder": "top_bottom_extruder_nr",
  1203. "settable_per_mesh": true
  1204. },
  1205. "wall_0_inset":
  1206. {
  1207. "label": "Outer Wall Inset",
  1208. "description": "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model.",
  1209. "unit": "mm",
  1210. "type": "float",
  1211. "default_value": 0.0,
  1212. "value": "(machine_nozzle_size - wall_line_width_0) / 2 if (wall_line_width_0 < machine_nozzle_size and not outer_inset_first) else 0",
  1213. "minimum_value_warning": "0",
  1214. "maximum_value_warning": "machine_nozzle_size",
  1215. "limit_to_extruder": "wall_0_extruder_nr",
  1216. "settable_per_mesh": true
  1217. },
  1218. "optimize_wall_printing_order":
  1219. {
  1220. "label": "Optimize Wall Printing Order",
  1221. "description": "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type.",
  1222. "type": "bool",
  1223. "default_value": false,
  1224. "settable_per_mesh": true
  1225. },
  1226. "outer_inset_first":
  1227. {
  1228. "label": "Outer Before Inner Walls",
  1229. "description": "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs.",
  1230. "type": "bool",
  1231. "default_value": false,
  1232. "enabled": "wall_0_extruder_nr == wall_x_extruder_nr",
  1233. "settable_per_mesh": true
  1234. },
  1235. "alternate_extra_perimeter":
  1236. {
  1237. "label": "Alternate Extra Wall",
  1238. "description": "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints.",
  1239. "type": "bool",
  1240. "default_value": false,
  1241. "limit_to_extruder": "infill_extruder_nr",
  1242. "settable_per_mesh": true
  1243. },
  1244. "travel_compensate_overlapping_walls_enabled":
  1245. {
  1246. "label": "Compensate Wall Overlaps",
  1247. "description": "Compensate the flow for parts of a wall being printed where there is already a wall in place.",
  1248. "type": "bool",
  1249. "default_value": true,
  1250. "limit_to_extruder": "wall_x_extruder_nr",
  1251. "settable_per_mesh": true,
  1252. "children":
  1253. {
  1254. "travel_compensate_overlapping_walls_0_enabled":
  1255. {
  1256. "label": "Compensate Outer Wall Overlaps",
  1257. "description": "Compensate the flow for parts of an outer wall being printed where there is already a wall in place.",
  1258. "type": "bool",
  1259. "default_value": true,
  1260. "value": "travel_compensate_overlapping_walls_enabled",
  1261. "limit_to_extruder": "wall_0_extruder_nr",
  1262. "settable_per_mesh": true
  1263. },
  1264. "travel_compensate_overlapping_walls_x_enabled":
  1265. {
  1266. "label": "Compensate Inner Wall Overlaps",
  1267. "description": "Compensate the flow for parts of an inner wall being printed where there is already a wall in place.",
  1268. "type": "bool",
  1269. "default_value": true,
  1270. "value": "travel_compensate_overlapping_walls_enabled",
  1271. "limit_to_extruder": "wall_x_extruder_nr",
  1272. "settable_per_mesh": true
  1273. }
  1274. }
  1275. },
  1276. "fill_perimeter_gaps":
  1277. {
  1278. "label": "Fill Gaps Between Walls",
  1279. "description": "Fills the gaps between walls where no walls fit.",
  1280. "type": "enum",
  1281. "options": {
  1282. "nowhere": "Nowhere",
  1283. "everywhere": "Everywhere"
  1284. },
  1285. "default_value": "everywhere",
  1286. "limit_to_extruder": "wall_0_extruder_nr",
  1287. "settable_per_mesh": true
  1288. },
  1289. "filter_out_tiny_gaps":
  1290. {
  1291. "label": "Filter Out Tiny Gaps",
  1292. "description": "Filter out tiny gaps to reduce blobs on outside of model.",
  1293. "type": "bool",
  1294. "default_value": true,
  1295. "limit_to_extruder": "wall_0_extruder_nr",
  1296. "settable_per_mesh": true
  1297. },
  1298. "fill_outline_gaps": {
  1299. "label": "Print Thin Walls",
  1300. "description": "Print pieces of the model which are horizontally thinner than the nozzle size.",
  1301. "type": "bool",
  1302. "default_value": false,
  1303. "limit_to_extruder": "wall_0_extruder_nr",
  1304. "settable_per_mesh": true
  1305. },
  1306. "xy_offset":
  1307. {
  1308. "label": "Horizontal Expansion",
  1309. "description": "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes.",
  1310. "unit": "mm",
  1311. "type": "float",
  1312. "minimum_value_warning": "-1",
  1313. "maximum_value_warning": "1",
  1314. "default_value": 0,
  1315. "limit_to_extruder": "wall_0_extruder_nr",
  1316. "settable_per_mesh": true
  1317. },
  1318. "xy_offset_layer_0":
  1319. {
  1320. "label": "Initial Layer Horizontal Expansion",
  1321. "description": "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\".",
  1322. "unit": "mm",
  1323. "type": "float",
  1324. "minimum_value_warning": "-1",
  1325. "maximum_value_warning": "1",
  1326. "default_value": 0,
  1327. "value": "xy_offset",
  1328. "limit_to_extruder": "wall_0_extruder_nr",
  1329. "settable_per_mesh": true
  1330. },
  1331. "z_seam_type":
  1332. {
  1333. "label": "Z Seam Alignment",
  1334. "description": "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker.",
  1335. "type": "enum",
  1336. "options":
  1337. {
  1338. "back": "User Specified",
  1339. "shortest": "Shortest",
  1340. "random": "Random",
  1341. "sharpest_corner": "Sharpest Corner"
  1342. },
  1343. "default_value": "sharpest_corner",
  1344. "limit_to_extruder": "wall_0_extruder_nr",
  1345. "settable_per_mesh": true
  1346. },
  1347. "z_seam_x":
  1348. {
  1349. "label": "Z Seam X",
  1350. "description": "The X coordinate of the position near where to start printing each part in a layer.",
  1351. "unit": "mm",
  1352. "type": "float",
  1353. "default_value": 100.0,
  1354. "value": "machine_width / 2",
  1355. "enabled": "z_seam_type == 'back'",
  1356. "limit_to_extruder": "wall_0_extruder_nr",
  1357. "settable_per_mesh": true
  1358. },
  1359. "z_seam_y":
  1360. {
  1361. "label": "Z Seam Y",
  1362. "description": "The Y coordinate of the position near where to start printing each part in a layer.",
  1363. "unit": "mm",
  1364. "type": "float",
  1365. "default_value": 100.0,
  1366. "value": "machine_depth * 3",
  1367. "enabled": "z_seam_type == 'back'",
  1368. "limit_to_extruder": "wall_0_extruder_nr",
  1369. "settable_per_mesh": true
  1370. },
  1371. "z_seam_corner":
  1372. {
  1373. "label": "Seam Corner Preference",
  1374. "description": "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner.",
  1375. "type": "enum",
  1376. "options":
  1377. {
  1378. "z_seam_corner_none": "None",
  1379. "z_seam_corner_inner": "Hide Seam",
  1380. "z_seam_corner_outer": "Expose Seam",
  1381. "z_seam_corner_any": "Hide or Expose Seam"
  1382. },
  1383. "default_value": "z_seam_corner_inner",
  1384. "enabled": "z_seam_type != 'random'",
  1385. "limit_to_extruder": "wall_0_extruder_nr",
  1386. "settable_per_mesh": true
  1387. },
  1388. "z_seam_relative":
  1389. {
  1390. "label": "Z Seam Relative",
  1391. "description": "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate.",
  1392. "unit": "mm",
  1393. "type": "bool",
  1394. "default_value": false,
  1395. "enabled": "z_seam_type == 'back'",
  1396. "limit_to_extruder": "wall_0_extruder_nr",
  1397. "settable_per_mesh": true
  1398. },
  1399. "skin_no_small_gaps_heuristic":
  1400. {
  1401. "label": "Ignore Small Z Gaps",
  1402. "description": "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting.",
  1403. "type": "bool",
  1404. "default_value": true,
  1405. "limit_to_extruder": "top_bottom_extruder_nr",
  1406. "settable_per_mesh": true
  1407. },
  1408. "skin_outline_count":
  1409. {
  1410. "label": "Extra Skin Wall Count",
  1411. "description": "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material.",
  1412. "default_value": 1,
  1413. "minimum_value": "0",
  1414. "maximum_value_warning": "10",
  1415. "type": "int",
  1416. "limit_to_extruder": "top_bottom_extruder_nr",
  1417. "settable_per_mesh": true
  1418. },
  1419. "ironing_enabled":
  1420. {
  1421. "label": "Enable Ironing",
  1422. "description": "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface.",
  1423. "type": "bool",
  1424. "default_value": false,
  1425. "limit_to_extruder": "top_bottom_extruder_nr",
  1426. "settable_per_mesh": true
  1427. },
  1428. "ironing_only_highest_layer":
  1429. {
  1430. "label": "Iron Only Highest Layer",
  1431. "description": "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish.",
  1432. "type": "bool",
  1433. "default_value": false,
  1434. "enabled": "ironing_enabled",
  1435. "limit_to_extruder": "top_bottom_extruder_nr",
  1436. "settable_per_mesh": true
  1437. },
  1438. "ironing_pattern":
  1439. {
  1440. "label": "Ironing Pattern",
  1441. "description": "The pattern to use for ironing top surfaces.",
  1442. "type": "enum",
  1443. "options":
  1444. {
  1445. "concentric": "Concentric",
  1446. "zigzag": "Zig Zag"
  1447. },
  1448. "default_value": "zigzag",
  1449. "enabled": "ironing_enabled",
  1450. "limit_to_extruder": "top_bottom_extruder_nr",
  1451. "settable_per_mesh": true
  1452. },
  1453. "ironing_line_spacing":
  1454. {
  1455. "label": "Ironing Line Spacing",
  1456. "description": "The distance between the lines of ironing.",
  1457. "type": "float",
  1458. "unit": "mm",
  1459. "default_value": 0.1,
  1460. "minimum_value": "0.001",
  1461. "maximum_value_warning": "machine_nozzle_tip_outer_diameter",
  1462. "enabled": "ironing_enabled",
  1463. "limit_to_extruder": "top_bottom_extruder_nr",
  1464. "settable_per_mesh": true
  1465. },
  1466. "ironing_flow":
  1467. {
  1468. "label": "Ironing Flow",
  1469. "description": "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface.",
  1470. "type": "float",
  1471. "unit": "%",
  1472. "default_value": 10.0,
  1473. "minimum_value": "0",
  1474. "maximum_value_warning": "50",
  1475. "enabled": "ironing_enabled",
  1476. "limit_to_extruder": "top_bottom_extruder_nr",
  1477. "settable_per_mesh": true
  1478. },
  1479. "ironing_inset":
  1480. {
  1481. "label": "Ironing Inset",
  1482. "description": "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print.",
  1483. "type": "float",
  1484. "unit": "mm",
  1485. "default_value": 0.35,
  1486. "value": "wall_line_width_0 / 2",
  1487. "minimum_value_warning": "0",
  1488. "maximum_value_warning": "wall_line_width_0",
  1489. "enabled": "ironing_enabled",
  1490. "limit_to_extruder": "top_bottom_extruder_nr",
  1491. "settable_per_mesh": true
  1492. },
  1493. "speed_ironing":
  1494. {
  1495. "label": "Ironing Speed",
  1496. "description": "The speed at which to pass over the top surface.",
  1497. "type": "float",
  1498. "unit": "mm/s",
  1499. "default_value": 20.0,
  1500. "value": "speed_topbottom * 20 / 30",
  1501. "minimum_value": "0.001",
  1502. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  1503. "maximum_value_warning": "100",
  1504. "enabled": "ironing_enabled",
  1505. "limit_to_extruder": "top_bottom_extruder_nr",
  1506. "settable_per_mesh": true
  1507. },
  1508. "acceleration_ironing":
  1509. {
  1510. "label": "Ironing Acceleration",
  1511. "description": "The acceleration with which ironing is performed.",
  1512. "unit": "mm/s²",
  1513. "type": "float",
  1514. "minimum_value": "0.1",
  1515. "minimum_value_warning": "100",
  1516. "maximum_value_warning": "10000",
  1517. "default_value": 3000,
  1518. "value": "acceleration_topbottom",
  1519. "enabled": "resolveOrValue('acceleration_enabled') and ironing_enabled",
  1520. "limit_to_extruder": "top_bottom_extruder_nr",
  1521. "settable_per_mesh": true
  1522. },
  1523. "jerk_ironing":
  1524. {
  1525. "label": "Ironing Jerk",
  1526. "description": "The maximum instantaneous velocity change while performing ironing.",
  1527. "unit": "mm/s",
  1528. "type": "float",
  1529. "minimum_value": "0",
  1530. "maximum_value_warning": "50",
  1531. "default_value": 20,
  1532. "value": "jerk_topbottom",
  1533. "enabled": "resolveOrValue('jerk_enabled') and ironing_enabled",
  1534. "limit_to_extruder": "top_bottom_extruder_nr",
  1535. "settable_per_mesh": true
  1536. }
  1537. }
  1538. },
  1539. "infill":
  1540. {
  1541. "label": "Infill",
  1542. "icon": "category_infill",
  1543. "description": "Infill",
  1544. "type": "category",
  1545. "children":
  1546. {
  1547. "infill_extruder_nr":
  1548. {
  1549. "label": "Infill Extruder",
  1550. "description": "The extruder train used for printing infill. This is used in multi-extrusion.",
  1551. "type": "optional_extruder",
  1552. "default_value": "-1",
  1553. "settable_per_mesh": false,
  1554. "settable_per_extruder": false,
  1555. "settable_per_meshgroup": true,
  1556. "settable_globally": true,
  1557. "enabled": "extruders_enabled_count > 1"
  1558. },
  1559. "infill_sparse_density":
  1560. {
  1561. "label": "Infill Density",
  1562. "description": "Adjusts the density of infill of the print.",
  1563. "unit": "%",
  1564. "type": "float",
  1565. "default_value": 20,
  1566. "minimum_value": "0",
  1567. "maximum_value_warning": "100",
  1568. "limit_to_extruder": "infill_extruder_nr",
  1569. "settable_per_mesh": true,
  1570. "children":
  1571. {
  1572. "infill_line_distance":
  1573. {
  1574. "label": "Infill Line Distance",
  1575. "description": "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width.",
  1576. "unit": "mm",
  1577. "type": "float",
  1578. "default_value": 2,
  1579. "minimum_value": "0",
  1580. "minimum_value_warning": "infill_line_width",
  1581. "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))",
  1582. "limit_to_extruder": "infill_extruder_nr",
  1583. "settable_per_mesh": true
  1584. }
  1585. }
  1586. },
  1587. "infill_pattern":
  1588. {
  1589. "label": "Infill Pattern",
  1590. "description": "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction.",
  1591. "type": "enum",
  1592. "options":
  1593. {
  1594. "grid": "Grid",
  1595. "lines": "Lines",
  1596. "triangles": "Triangles",
  1597. "trihexagon": "Tri-Hexagon",
  1598. "cubic": "Cubic",
  1599. "cubicsubdiv": "Cubic Subdivision",
  1600. "tetrahedral": "Octet",
  1601. "quarter_cubic": "Quarter Cubic",
  1602. "concentric": "Concentric",
  1603. "concentric_3d": "Concentric 3D",
  1604. "zigzag": "Zig Zag",
  1605. "cross": "Cross",
  1606. "cross_3d": "Cross 3D"
  1607. },
  1608. "default_value": "grid",
  1609. "enabled": "infill_sparse_density > 0",
  1610. "value": "'lines' if infill_sparse_density > 25 else 'grid'",
  1611. "limit_to_extruder": "infill_extruder_nr",
  1612. "settable_per_mesh": true
  1613. },
  1614. "zig_zaggify_infill":
  1615. {
  1616. "label": "Connect Infill Lines",
  1617. "description": "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used.",
  1618. "type": "bool",
  1619. "default_value": false,
  1620. "value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d'",
  1621. "enabled": "infill_pattern == 'grid' or infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'cross' or infill_pattern == 'cross_3d'",
  1622. "limit_to_extruder": "infill_extruder_nr",
  1623. "settable_per_mesh": true
  1624. },
  1625. "infill_angles":
  1626. {
  1627. "label": "Infill Line Directions",
  1628. "description": "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns).",
  1629. "type": "[int]",
  1630. "default_value": "[ ]",
  1631. "enabled": "infill_pattern != 'concentric' and infill_pattern != 'concentric_3d' and infill_pattern != 'cubicsubdiv' and infill_sparse_density > 0",
  1632. "limit_to_extruder": "infill_extruder_nr",
  1633. "settable_per_mesh": true
  1634. },
  1635. "infill_offset_x":
  1636. {
  1637. "label": "Infill X Offset",
  1638. "description": "The infill pattern is moved this distance along the X axis.",
  1639. "unit": "mm",
  1640. "type": "float",
  1641. "default_value": 0,
  1642. "enabled": "infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'",
  1643. "limit_to_extruder": "infill_extruder_nr",
  1644. "settable_per_mesh": true
  1645. },
  1646. "infill_offset_y":
  1647. {
  1648. "label": "Infill Y Offset",
  1649. "description": "The infill pattern is moved this distance along the Y axis.",
  1650. "unit": "mm",
  1651. "type": "float",
  1652. "default_value": 0,
  1653. "enabled": "infill_pattern == 'grid' or infill_pattern == 'lines' or infill_pattern == 'triangles' or infill_pattern == 'cubic' or infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' or infill_pattern == 'zigzag'",
  1654. "limit_to_extruder": "infill_extruder_nr",
  1655. "settable_per_mesh": true
  1656. },
  1657. "sub_div_rad_add":
  1658. {
  1659. "label": "Cubic Subdivision Shell",
  1660. "description": "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model.",
  1661. "unit": "mm",
  1662. "type": "float",
  1663. "default_value": 0.4,
  1664. "value": "wall_line_width_x",
  1665. "minimum_value_warning": "-1 * infill_line_distance",
  1666. "maximum_value_warning": "5 * infill_line_distance",
  1667. "enabled": "infill_sparse_density > 0 and infill_pattern == 'cubicsubdiv'",
  1668. "limit_to_extruder": "infill_extruder_nr",
  1669. "settable_per_mesh": true
  1670. },
  1671. "infill_overlap":
  1672. {
  1673. "label": "Infill Overlap Percentage",
  1674. "description": "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill.",
  1675. "unit": "%",
  1676. "type": "float",
  1677. "default_value": 10,
  1678. "value": "10 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0",
  1679. "minimum_value_warning": "-50",
  1680. "maximum_value_warning": "100",
  1681. "enabled": "infill_sparse_density > 0 and infill_pattern != 'concentric'",
  1682. "limit_to_extruder": "infill_extruder_nr",
  1683. "settable_per_mesh": true,
  1684. "children":
  1685. {
  1686. "infill_overlap_mm":
  1687. {
  1688. "label": "Infill Overlap",
  1689. "description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
  1690. "unit": "mm",
  1691. "type": "float",
  1692. "default_value": 0.04,
  1693. "minimum_value_warning": "-0.5 * machine_nozzle_size",
  1694. "maximum_value_warning": "machine_nozzle_size",
  1695. "value": "0.5 * (infill_line_width + (wall_line_width_x if wall_line_count > 1 else wall_line_width_0)) * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0",
  1696. "enabled": "infill_sparse_density > 0 and infill_pattern != 'concentric'",
  1697. "settable_per_mesh": true
  1698. }
  1699. }
  1700. },
  1701. "skin_overlap":
  1702. {
  1703. "label": "Skin Overlap Percentage",
  1704. "description": "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall.",
  1705. "unit": "%",
  1706. "type": "float",
  1707. "default_value": 5,
  1708. "minimum_value_warning": "-50",
  1709. "maximum_value_warning": "100",
  1710. "value": "5 if top_bottom_pattern != 'concentric' else 0",
  1711. "enabled": "top_bottom_pattern != 'concentric'",
  1712. "limit_to_extruder": "top_bottom_extruder_nr",
  1713. "settable_per_mesh": true,
  1714. "children":
  1715. {
  1716. "skin_overlap_mm":
  1717. {
  1718. "label": "Skin Overlap",
  1719. "description": "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin.",
  1720. "unit": "mm",
  1721. "type": "float",
  1722. "default_value": 0.02,
  1723. "minimum_value_warning": "-0.5 * machine_nozzle_size",
  1724. "maximum_value_warning": "machine_nozzle_size",
  1725. "value": "0.5 * (skin_line_width + (wall_line_width_x if wall_line_count > 1 else wall_line_width_0)) * skin_overlap / 100 if top_bottom_pattern != 'concentric' else 0",
  1726. "enabled": "top_bottom_pattern != 'concentric'",
  1727. "settable_per_mesh": true
  1728. }
  1729. }
  1730. },
  1731. "infill_wipe_dist":
  1732. {
  1733. "label": "Infill Wipe Distance",
  1734. "description": "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line.",
  1735. "unit": "mm",
  1736. "type": "float",
  1737. "default_value": 0.04,
  1738. "value": "wall_line_width_0 / 4 if wall_line_count == 1 else wall_line_width_x / 4",
  1739. "minimum_value_warning": "0",
  1740. "maximum_value_warning": "machine_nozzle_size",
  1741. "enabled": "infill_sparse_density > 0",
  1742. "limit_to_extruder": "infill_extruder_nr",
  1743. "settable_per_mesh": true
  1744. },
  1745. "infill_sparse_thickness":
  1746. {
  1747. "label": "Infill Layer Thickness",
  1748. "description": "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded.",
  1749. "unit": "mm",
  1750. "type": "float",
  1751. "default_value": 0.1,
  1752. "minimum_value": "resolveOrValue('layer_height')",
  1753. "maximum_value_warning": "0.75 * machine_nozzle_size",
  1754. "maximum_value": "resolveOrValue('layer_height') * (1.45 if spaghetti_infill_enabled else 8)",
  1755. "value": "resolveOrValue('layer_height')",
  1756. "enabled": "infill_sparse_density > 0 and not spaghetti_infill_enabled",
  1757. "limit_to_extruder": "infill_extruder_nr",
  1758. "settable_per_mesh": true
  1759. },
  1760. "gradual_infill_steps":
  1761. {
  1762. "label": "Gradual Infill Steps",
  1763. "description": "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density.",
  1764. "default_value": 0,
  1765. "type": "int",
  1766. "minimum_value": "0",
  1767. "maximum_value_warning": "1 if (infill_pattern == 'cross' or infill_pattern == 'cross_3d' or support_pattern == 'concentric' or support_pattern == 'concentric_3d') else 5",
  1768. "maximum_value": "0 if spaghetti_infill_enabled else (999999 if infill_line_distance == 0 else (20 - math.log(infill_line_distance) / math.log(2)))",
  1769. "enabled": "infill_sparse_density > 0 and infill_pattern != 'cubicsubdiv' and not spaghetti_infill_enabled",
  1770. "limit_to_extruder": "infill_extruder_nr",
  1771. "settable_per_mesh": true
  1772. },
  1773. "gradual_infill_step_height":
  1774. {
  1775. "label": "Gradual Infill Step Height",
  1776. "description": "The height of infill of a given density before switching to half the density.",
  1777. "unit": "mm",
  1778. "type": "float",
  1779. "default_value": 1.5,
  1780. "minimum_value": "0.0001",
  1781. "minimum_value_warning": "3 * resolveOrValue('layer_height')",
  1782. "enabled": "infill_sparse_density > 0 and gradual_infill_steps > 0 and infill_pattern != 'cubicsubdiv'",
  1783. "limit_to_extruder": "infill_extruder_nr",
  1784. "settable_per_mesh": true
  1785. },
  1786. "infill_before_walls":
  1787. {
  1788. "label": "Infill Before Walls",
  1789. "description": "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface.",
  1790. "type": "bool",
  1791. "default_value": true,
  1792. "enabled": "infill_sparse_density > 0 and wall_x_extruder_nr == infill_extruder_nr",
  1793. "settable_per_mesh": true
  1794. },
  1795. "min_infill_area":
  1796. {
  1797. "label": "Minimum Infill Area",
  1798. "description": "Don't generate areas of infill smaller than this (use skin instead).",
  1799. "unit": "mm²",
  1800. "type": "float",
  1801. "minimum_value": "0",
  1802. "default_value": 0,
  1803. "limit_to_extruder": "infill_extruder_nr",
  1804. "settable_per_mesh": true
  1805. },
  1806. "skin_preshrink":
  1807. {
  1808. "label": "Skin Removal Width",
  1809. "description": "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model.",
  1810. "unit": "mm",
  1811. "type": "float",
  1812. "default_value": 0,
  1813. "value": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
  1814. "minimum_value": "0",
  1815. "limit_to_extruder": "top_bottom_extruder_nr",
  1816. "settable_per_mesh": true,
  1817. "children":
  1818. {
  1819. "top_skin_preshrink":
  1820. {
  1821. "label": "Top Skin Removal Width",
  1822. "description": "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model.",
  1823. "unit": "mm",
  1824. "type": "float",
  1825. "default_value": 0,
  1826. "value": "skin_preshrink",
  1827. "minimum_value": "0",
  1828. "limit_to_extruder": "top_bottom_extruder_nr",
  1829. "settable_per_mesh": true
  1830. },
  1831. "bottom_skin_preshrink":
  1832. {
  1833. "label": "Bottom Skin Removal Width",
  1834. "description": "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model.",
  1835. "unit": "mm",
  1836. "type": "float",
  1837. "default_value": 0,
  1838. "value": "skin_preshrink",
  1839. "minimum_value": "0",
  1840. "limit_to_extruder": "top_bottom_extruder_nr",
  1841. "settable_per_mesh": true
  1842. }
  1843. }
  1844. },
  1845. "expand_skins_expand_distance":
  1846. {
  1847. "label": "Skin Expand Distance",
  1848. "description": "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used.",
  1849. "unit": "mm",
  1850. "type": "float",
  1851. "default_value": 2.8,
  1852. "value": "wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x",
  1853. "minimum_value": "-skin_preshrink",
  1854. "limit_to_extruder": "top_bottom_extruder_nr",
  1855. "settable_per_mesh": true,
  1856. "children":
  1857. {
  1858. "top_skin_expand_distance":
  1859. {
  1860. "label": "Top Skin Expand Distance",
  1861. "description": "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used.",
  1862. "unit": "mm",
  1863. "type": "float",
  1864. "default_value": 2.8,
  1865. "value": "expand_skins_expand_distance",
  1866. "minimum_value": "-top_skin_preshrink",
  1867. "limit_to_extruder": "top_bottom_extruder_nr",
  1868. "settable_per_mesh": true
  1869. },
  1870. "bottom_skin_expand_distance":
  1871. {
  1872. "label": "Bottom Skin Expand Distance",
  1873. "description": "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used.",
  1874. "unit": "mm",
  1875. "type": "float",
  1876. "default_value": 2.8,
  1877. "value": "expand_skins_expand_distance",
  1878. "minimum_value": "-bottom_skin_preshrink",
  1879. "limit_to_extruder": "top_bottom_extruder_nr",
  1880. "settable_per_mesh": true
  1881. }
  1882. }
  1883. },
  1884. "max_skin_angle_for_expansion":
  1885. {
  1886. "label": "Maximum Skin Angle for Expansion",
  1887. "description": "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical.",
  1888. "unit": "°",
  1889. "type": "float",
  1890. "minimum_value": "0",
  1891. "minimum_value_warning": "2",
  1892. "maximum_value": "90",
  1893. "default_value": 90,
  1894. "enabled": "top_skin_expand_distance > 0 or bottom_skin_expand_distance > 0",
  1895. "limit_to_extruder": "top_bottom_extruder_nr",
  1896. "settable_per_mesh": true,
  1897. "children":
  1898. {
  1899. "min_skin_width_for_expansion":
  1900. {
  1901. "label": "Minimum Skin Width for Expansion",
  1902. "description": "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical.",
  1903. "unit": "mm",
  1904. "type": "float",
  1905. "default_value": 2.24,
  1906. "value": "top_layers * layer_height / math.tan(math.radians(max_skin_angle_for_expansion))",
  1907. "minimum_value": "0",
  1908. "enabled": "top_skin_expand_distance > 0 or bottom_skin_expand_distance > 0",
  1909. "limit_to_extruder": "top_bottom_extruder_nr",
  1910. "settable_per_mesh": true
  1911. }
  1912. }
  1913. }
  1914. }
  1915. },
  1916. "material":
  1917. {
  1918. "label": "Material",
  1919. "icon": "category_material",
  1920. "description": "Material",
  1921. "type": "category",
  1922. "children":
  1923. {
  1924. "default_material_print_temperature":
  1925. {
  1926. "label": "Default Printing Temperature",
  1927. "description": "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value",
  1928. "unit": "°C",
  1929. "type": "float",
  1930. "default_value": 210,
  1931. "minimum_value_warning": "0",
  1932. "maximum_value_warning": "250",
  1933. "enabled": "machine_nozzle_temp_enabled",
  1934. "settable_per_extruder": true,
  1935. "settable_per_mesh": false,
  1936. "minimum_value": "-273.15"
  1937. },
  1938. "material_print_temperature":
  1939. {
  1940. "label": "Printing Temperature",
  1941. "description": "The temperature used for printing.",
  1942. "unit": "°C",
  1943. "type": "float",
  1944. "default_value": 210,
  1945. "value": "default_material_print_temperature",
  1946. "minimum_value": "-273.15",
  1947. "minimum_value_warning": "0",
  1948. "maximum_value_warning": "250",
  1949. "enabled": "machine_nozzle_temp_enabled and not (material_flow_dependent_temperature)",
  1950. "settable_per_mesh": false,
  1951. "settable_per_extruder": true
  1952. },
  1953. "material_print_temperature_layer_0":
  1954. {
  1955. "label": "Printing Temperature Initial Layer",
  1956. "description": "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer.",
  1957. "unit": "°C",
  1958. "type": "float",
  1959. "default_value": 210,
  1960. "value": "min(250, material_print_temperature + 5)",
  1961. "minimum_value": "-273.15",
  1962. "minimum_value_warning": "0",
  1963. "maximum_value_warning": "250",
  1964. "enabled": "machine_nozzle_temp_enabled",
  1965. "settable_per_mesh": false,
  1966. "settable_per_extruder": true
  1967. },
  1968. "material_initial_print_temperature":
  1969. {
  1970. "label": "Initial Printing Temperature",
  1971. "description": "The minimal temperature while heating up to the Printing Temperature at which printing can already start.",
  1972. "unit": "°C",
  1973. "type": "float",
  1974. "default_value": 200,
  1975. "value": "material_print_temperature",
  1976. "minimum_value": "-273.15",
  1977. "minimum_value_warning": "material_standby_temperature",
  1978. "maximum_value_warning": "material_print_temperature",
  1979. "enabled": "machine_nozzle_temp_enabled",
  1980. "settable_per_mesh": false,
  1981. "settable_per_extruder": true
  1982. },
  1983. "material_final_print_temperature":
  1984. {
  1985. "label": "Final Printing Temperature",
  1986. "description": "The temperature to which to already start cooling down just before the end of printing.",
  1987. "unit": "°C",
  1988. "type": "float",
  1989. "default_value": 195,
  1990. "value": "material_print_temperature",
  1991. "minimum_value": "-273.15",
  1992. "minimum_value_warning": "material_standby_temperature",
  1993. "maximum_value_warning": "material_print_temperature",
  1994. "enabled": "machine_nozzle_temp_enabled",
  1995. "settable_per_mesh": false,
  1996. "settable_per_extruder": true
  1997. },
  1998. "material_extrusion_cool_down_speed":
  1999. {
  2000. "label": "Extrusion Cool Down Speed Modifier",
  2001. "description": "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding.",
  2002. "unit": "°C/s",
  2003. "type": "float",
  2004. "default_value": 0.7,
  2005. "minimum_value": "0",
  2006. "maximum_value_warning": "10.0",
  2007. "maximum_value": "machine_nozzle_heat_up_speed",
  2008. "enabled": "material_flow_dependent_temperature or (extruders_enabled_count > 1 and material_final_print_temperature != material_print_temperature)",
  2009. "settable_per_mesh": false,
  2010. "settable_per_extruder": true
  2011. },
  2012. "default_material_bed_temperature":
  2013. {
  2014. "label": "Default Build Plate Temperature",
  2015. "description": "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value",
  2016. "unit": "°C",
  2017. "type": "float",
  2018. "resolve": "max(extruderValues('default_material_bed_temperature'))",
  2019. "default_value": 60,
  2020. "minimum_value": "-273.15",
  2021. "minimum_value_warning": "0",
  2022. "maximum_value_warning": "130",
  2023. "enabled": "machine_heated_bed and machine_gcode_flavor != \"UltiGCode\"",
  2024. "settable_per_mesh": false,
  2025. "settable_per_extruder": false,
  2026. "settable_per_meshgroup": false
  2027. },
  2028. "material_bed_temperature":
  2029. {
  2030. "label": "Build Plate Temperature",
  2031. "description": "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted.",
  2032. "unit": "°C",
  2033. "type": "float",
  2034. "default_value": 60,
  2035. "value": "default_material_bed_temperature",
  2036. "minimum_value": "-273.15",
  2037. "minimum_value_warning": "0",
  2038. "maximum_value_warning": "130",
  2039. "enabled": "machine_heated_bed and machine_gcode_flavor != \"UltiGCode\"",
  2040. "settable_per_mesh": false,
  2041. "settable_per_extruder": false,
  2042. "settable_per_meshgroup": false
  2043. },
  2044. "material_bed_temperature_layer_0":
  2045. {
  2046. "label": "Build Plate Temperature Initial Layer",
  2047. "description": "The temperature used for the heated build plate at the first layer.",
  2048. "unit": "°C",
  2049. "type": "float",
  2050. "resolve": "max(extruderValues('material_bed_temperature_layer_0'))",
  2051. "default_value": 60,
  2052. "value": "resolveOrValue('material_bed_temperature')",
  2053. "minimum_value": "-273.15",
  2054. "minimum_value_warning": "max(extruderValues('material_bed_temperature'))",
  2055. "maximum_value_warning": "130",
  2056. "enabled": "machine_heated_bed and machine_gcode_flavor != \"UltiGCode\"",
  2057. "settable_per_mesh": false,
  2058. "settable_per_extruder": false,
  2059. "settable_per_meshgroup": false
  2060. },
  2061. "material_diameter":
  2062. {
  2063. "label": "Diameter",
  2064. "description": "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament.",
  2065. "unit": "mm",
  2066. "type": "float",
  2067. "default_value": 2.85,
  2068. "minimum_value": "0.0001",
  2069. "minimum_value_warning": "0.4",
  2070. "maximum_value_warning": "3.5",
  2071. "enabled": "machine_gcode_flavor != \"UltiGCode\"",
  2072. "settable_per_mesh": false,
  2073. "settable_per_extruder": true
  2074. },
  2075. "material_adhesion_tendency":
  2076. {
  2077. "label": "Adhesion Tendency",
  2078. "description": "Surface adhesion tendency.",
  2079. "type": "int",
  2080. "default_value": 10,
  2081. "minimum_value": "0",
  2082. "maximum_value": "10",
  2083. "enabled": false,
  2084. "settable_per_mesh": false,
  2085. "settable_per_extruder": true
  2086. },
  2087. "material_surface_energy":
  2088. {
  2089. "label": "Surface Energy",
  2090. "description": "Surface energy.",
  2091. "unit": "%",
  2092. "type": "int",
  2093. "default_value": 100,
  2094. "minimum_value": "0",
  2095. "maximum_value": "100",
  2096. "enabled": false,
  2097. "settable_per_mesh": false,
  2098. "settable_per_extruder": true
  2099. },
  2100. "material_shrinkage_percentage":
  2101. {
  2102. "label": "Shrinkage Ratio",
  2103. "description": "Shrinkage ratio in percentage.",
  2104. "unit": "%",
  2105. "type": "float",
  2106. "default_value": 0,
  2107. "minimum_value": "0",
  2108. "maximum_value": "100",
  2109. "enabled": false,
  2110. "settable_per_mesh": false,
  2111. "settable_per_extruder": true
  2112. },
  2113. "material_flow":
  2114. {
  2115. "label": "Flow",
  2116. "description": "Flow compensation: the amount of material extruded is multiplied by this value.",
  2117. "unit": "%",
  2118. "default_value": 100,
  2119. "type": "float",
  2120. "minimum_value": "5",
  2121. "minimum_value_warning": "50",
  2122. "maximum_value_warning": "150",
  2123. "enabled": "machine_gcode_flavor != \"UltiGCode\"",
  2124. "settable_per_mesh": true
  2125. },
  2126. "material_flow_layer_0":
  2127. {
  2128. "label": "Initial Layer Flow",
  2129. "description": "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value.",
  2130. "unit": "%",
  2131. "default_value": 100,
  2132. "value": "material_flow",
  2133. "type": "float",
  2134. "minimum_value": "0.0001",
  2135. "minimum_value_warning": "50",
  2136. "maximum_value_warning": "150",
  2137. "settable_per_mesh": true
  2138. },
  2139. "retraction_enable":
  2140. {
  2141. "label": "Enable Retraction",
  2142. "description": "Retract the filament when the nozzle is moving over a non-printed area. ",
  2143. "type": "bool",
  2144. "default_value": true,
  2145. "settable_per_mesh": false,
  2146. "settable_per_extruder": true
  2147. },
  2148. "retract_at_layer_change":
  2149. {
  2150. "label": "Retract at Layer Change",
  2151. "description": "Retract the filament when the nozzle is moving to the next layer.",
  2152. "type": "bool",
  2153. "default_value": false,
  2154. "settable_per_mesh": false,
  2155. "settable_per_extruder": true
  2156. },
  2157. "retraction_amount":
  2158. {
  2159. "label": "Retraction Distance",
  2160. "description": "The length of material retracted during a retraction move.",
  2161. "unit": "mm",
  2162. "type": "float",
  2163. "default_value": 6.5,
  2164. "minimum_value_warning": "-0.0001",
  2165. "maximum_value_warning": "10.0",
  2166. "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"",
  2167. "settable_per_mesh": false,
  2168. "settable_per_extruder": true
  2169. },
  2170. "retraction_speed":
  2171. {
  2172. "label": "Retraction Speed",
  2173. "description": "The speed at which the filament is retracted and primed during a retraction move.",
  2174. "unit": "mm/s",
  2175. "type": "float",
  2176. "default_value": 25,
  2177. "minimum_value": "0.0001",
  2178. "minimum_value_warning": "1",
  2179. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2180. "maximum_value_warning": "70",
  2181. "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"",
  2182. "settable_per_mesh": false,
  2183. "settable_per_extruder": true,
  2184. "children":
  2185. {
  2186. "retraction_retract_speed":
  2187. {
  2188. "label": "Retraction Retract Speed",
  2189. "description": "The speed at which the filament is retracted during a retraction move.",
  2190. "unit": "mm/s",
  2191. "type": "float",
  2192. "default_value": 25,
  2193. "minimum_value": "0.0001",
  2194. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2195. "minimum_value_warning": "1",
  2196. "maximum_value_warning": "70",
  2197. "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"",
  2198. "value": "retraction_speed",
  2199. "settable_per_mesh": false,
  2200. "settable_per_extruder": true
  2201. },
  2202. "retraction_prime_speed":
  2203. {
  2204. "label": "Retraction Prime Speed",
  2205. "description": "The speed at which the filament is primed during a retraction move.",
  2206. "unit": "mm/s",
  2207. "type": "float",
  2208. "default_value": 25,
  2209. "minimum_value": "0.0001",
  2210. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2211. "minimum_value_warning": "1",
  2212. "maximum_value_warning": "70",
  2213. "enabled": "retraction_enable and machine_gcode_flavor != \"UltiGCode\"",
  2214. "value": "retraction_speed",
  2215. "settable_per_mesh": false,
  2216. "settable_per_extruder": true
  2217. }
  2218. }
  2219. },
  2220. "retraction_extra_prime_amount":
  2221. {
  2222. "label": "Retraction Extra Prime Amount",
  2223. "description": "Some material can ooze away during a travel move, which can be compensated for here.",
  2224. "unit": "mm³",
  2225. "type": "float",
  2226. "default_value": 0,
  2227. "minimum_value_warning": "-0.0001",
  2228. "maximum_value_warning": "5.0",
  2229. "enabled": "retraction_enable",
  2230. "settable_per_mesh": false,
  2231. "settable_per_extruder": true
  2232. },
  2233. "retraction_min_travel":
  2234. {
  2235. "label": "Retraction Minimum Travel",
  2236. "description": "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area.",
  2237. "unit": "mm",
  2238. "type": "float",
  2239. "default_value": 1.5,
  2240. "value": "line_width * 2",
  2241. "minimum_value": "0",
  2242. "minimum_value_warning": "line_width * 1.5",
  2243. "maximum_value_warning": "10",
  2244. "enabled": "retraction_enable",
  2245. "settable_per_mesh": false,
  2246. "settable_per_extruder": true
  2247. },
  2248. "retraction_count_max":
  2249. {
  2250. "label": "Maximum Retraction Count",
  2251. "description": "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues.",
  2252. "default_value": 90,
  2253. "minimum_value": "0",
  2254. "maximum_value_warning": "100",
  2255. "type": "int",
  2256. "enabled": "retraction_enable",
  2257. "settable_per_mesh": false,
  2258. "settable_per_extruder": true
  2259. },
  2260. "retraction_extrusion_window":
  2261. {
  2262. "label": "Minimum Extrusion Distance Window",
  2263. "description": "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited.",
  2264. "unit": "mm",
  2265. "type": "float",
  2266. "default_value": 4.5,
  2267. "minimum_value": "0",
  2268. "maximum_value_warning": "retraction_amount * 2",
  2269. "value": "retraction_amount",
  2270. "enabled": "retraction_enable",
  2271. "settable_per_mesh": false,
  2272. "settable_per_extruder": true
  2273. },
  2274. "material_standby_temperature":
  2275. {
  2276. "label": "Standby Temperature",
  2277. "description": "The temperature of the nozzle when another nozzle is currently used for printing.",
  2278. "type": "float",
  2279. "unit": "°C",
  2280. "default_value": 150,
  2281. "minimum_value": "-273.15",
  2282. "minimum_value_warning": "0",
  2283. "maximum_value_warning": "260",
  2284. "enabled": "extruders_enabled_count > 1 and machine_nozzle_temp_enabled",
  2285. "settable_per_mesh": false,
  2286. "settable_per_extruder": true
  2287. },
  2288. "switch_extruder_retraction_amount":
  2289. {
  2290. "label": "Nozzle Switch Retraction Distance",
  2291. "description": "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone.",
  2292. "type": "float",
  2293. "unit": "mm",
  2294. "enabled": "retraction_enable",
  2295. "default_value": 20,
  2296. "value": "machine_heat_zone_length",
  2297. "minimum_value_warning": "0",
  2298. "maximum_value_warning": "100",
  2299. "settable_per_mesh": false,
  2300. "settable_per_extruder": true
  2301. },
  2302. "switch_extruder_retraction_speeds":
  2303. {
  2304. "label": "Nozzle Switch Retraction Speed",
  2305. "description": "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding.",
  2306. "type": "float",
  2307. "unit": "mm/s",
  2308. "enabled": "retraction_enable",
  2309. "default_value": 20,
  2310. "minimum_value": "0.1",
  2311. "minimum_value_warning": "1",
  2312. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2313. "maximum_value_warning": "70",
  2314. "settable_per_mesh": false,
  2315. "settable_per_extruder": true,
  2316. "children":
  2317. {
  2318. "switch_extruder_retraction_speed":
  2319. {
  2320. "label": "Nozzle Switch Retract Speed",
  2321. "description": "The speed at which the filament is retracted during a nozzle switch retract.",
  2322. "type": "float",
  2323. "unit": "mm/s",
  2324. "enabled": "retraction_enable",
  2325. "default_value": 20,
  2326. "value": "switch_extruder_retraction_speeds",
  2327. "minimum_value": "0.1",
  2328. "minimum_value_warning": "1",
  2329. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2330. "maximum_value_warning": "70",
  2331. "settable_per_mesh": false,
  2332. "settable_per_extruder": true
  2333. },
  2334. "switch_extruder_prime_speed":
  2335. {
  2336. "label": "Nozzle Switch Prime Speed",
  2337. "description": "The speed at which the filament is pushed back after a nozzle switch retraction.",
  2338. "type": "float",
  2339. "unit": "mm/s",
  2340. "enabled": "retraction_enable",
  2341. "default_value": 20,
  2342. "value": "switch_extruder_retraction_speeds",
  2343. "minimum_value": "0.1",
  2344. "minimum_value_warning": "1",
  2345. "maximum_value": "machine_max_feedrate_e if retraction_enable else float('inf')",
  2346. "maximum_value_warning": "70",
  2347. "settable_per_mesh": false,
  2348. "settable_per_extruder": true
  2349. }
  2350. }
  2351. }
  2352. }
  2353. },
  2354. "speed":
  2355. {
  2356. "label": "Speed",
  2357. "icon": "category_speed",
  2358. "description": "Speed",
  2359. "type": "category",
  2360. "children":
  2361. {
  2362. "speed_print":
  2363. {
  2364. "label": "Print Speed",
  2365. "description": "The speed at which printing happens.",
  2366. "unit": "mm/s",
  2367. "type": "float",
  2368. "minimum_value": "0.1",
  2369. "maximum_value_warning": "150",
  2370. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2371. "default_value": 60,
  2372. "settable_per_mesh": true,
  2373. "children":
  2374. {
  2375. "speed_infill":
  2376. {
  2377. "label": "Infill Speed",
  2378. "description": "The speed at which infill is printed.",
  2379. "unit": "mm/s",
  2380. "type": "float",
  2381. "minimum_value": "0.1",
  2382. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2383. "maximum_value_warning": "150",
  2384. "default_value": 60,
  2385. "value": "speed_print",
  2386. "enabled": "infill_sparse_density > 0",
  2387. "limit_to_extruder": "infill_extruder_nr",
  2388. "settable_per_mesh": true
  2389. },
  2390. "speed_wall":
  2391. {
  2392. "label": "Wall Speed",
  2393. "description": "The speed at which the walls are printed.",
  2394. "unit": "mm/s",
  2395. "type": "float",
  2396. "minimum_value": "0.1",
  2397. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2398. "maximum_value_warning": "150",
  2399. "default_value": 30,
  2400. "value": "speed_print / 2",
  2401. "settable_per_mesh": true,
  2402. "children":
  2403. {
  2404. "speed_wall_0":
  2405. {
  2406. "label": "Outer Wall Speed",
  2407. "description": "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way.",
  2408. "unit": "mm/s",
  2409. "type": "float",
  2410. "minimum_value": "0.1",
  2411. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2412. "maximum_value_warning": "150",
  2413. "default_value": 30,
  2414. "value": "speed_wall",
  2415. "limit_to_extruder": "wall_0_extruder_nr",
  2416. "settable_per_mesh": true
  2417. },
  2418. "speed_wall_x":
  2419. {
  2420. "label": "Inner Wall Speed",
  2421. "description": "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed.",
  2422. "unit": "mm/s",
  2423. "type": "float",
  2424. "minimum_value": "0.1",
  2425. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2426. "maximum_value_warning": "150",
  2427. "default_value": 60,
  2428. "value": "speed_wall * 2",
  2429. "limit_to_extruder": "wall_x_extruder_nr",
  2430. "settable_per_mesh": true
  2431. }
  2432. }
  2433. },
  2434. "speed_roofing":
  2435. {
  2436. "label": "Top Surface Skin Speed",
  2437. "description": "The speed at which top surface skin layers are printed.",
  2438. "unit": "mm/s",
  2439. "type": "float",
  2440. "minimum_value": "0.1",
  2441. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2442. "maximum_value_warning": "150",
  2443. "default_value": 25,
  2444. "value": "speed_topbottom",
  2445. "limit_to_extruder": "roofing_extruder_nr",
  2446. "settable_per_mesh": true,
  2447. "enabled": "roofing_layer_count > 0 and top_layers > 0"
  2448. },
  2449. "speed_topbottom":
  2450. {
  2451. "label": "Top/Bottom Speed",
  2452. "description": "The speed at which top/bottom layers are printed.",
  2453. "unit": "mm/s",
  2454. "type": "float",
  2455. "minimum_value": "0.1",
  2456. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2457. "maximum_value_warning": "150",
  2458. "default_value": 30,
  2459. "value": "speed_print / 2",
  2460. "limit_to_extruder": "top_bottom_extruder_nr",
  2461. "settable_per_mesh": true
  2462. },
  2463. "speed_support":
  2464. {
  2465. "label": "Support Speed",
  2466. "description": "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing.",
  2467. "unit": "mm/s",
  2468. "type": "float",
  2469. "minimum_value": "0.1",
  2470. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2471. "maximum_value_warning": "150",
  2472. "default_value": 60,
  2473. "value": "speed_print",
  2474. "enabled": "support_enable",
  2475. "settable_per_mesh": false,
  2476. "limit_to_extruder": "support_extruder_nr",
  2477. "settable_per_extruder": true,
  2478. "children":
  2479. {
  2480. "speed_support_infill":
  2481. {
  2482. "label": "Support Infill Speed",
  2483. "description": "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability.",
  2484. "unit": "mm/s",
  2485. "type": "float",
  2486. "default_value": 60,
  2487. "minimum_value": "0.1",
  2488. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2489. "maximum_value_warning": "150",
  2490. "value": "speed_support",
  2491. "enabled": "support_enable",
  2492. "limit_to_extruder": "support_infill_extruder_nr",
  2493. "settable_per_mesh": false,
  2494. "settable_per_extruder": true
  2495. },
  2496. "speed_support_interface":
  2497. {
  2498. "label": "Support Interface Speed",
  2499. "description": "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality.",
  2500. "unit": "mm/s",
  2501. "type": "float",
  2502. "default_value": 40,
  2503. "minimum_value": "0.1",
  2504. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2505. "maximum_value_warning": "150",
  2506. "enabled": "support_interface_enable and support_enable",
  2507. "limit_to_extruder": "support_interface_extruder_nr",
  2508. "value": "speed_support / 1.5",
  2509. "settable_per_mesh": false,
  2510. "settable_per_extruder": true,
  2511. "children":
  2512. {
  2513. "speed_support_roof":
  2514. {
  2515. "label": "Support Roof Speed",
  2516. "description": "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality.",
  2517. "unit": "mm/s",
  2518. "type": "float",
  2519. "default_value": 40,
  2520. "minimum_value": "0.1",
  2521. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2522. "maximum_value_warning": "150",
  2523. "enabled": "support_roof_enable and support_enable",
  2524. "limit_to_extruder": "support_roof_extruder_nr",
  2525. "value": "extruderValue(support_roof_extruder_nr, 'speed_support_interface')",
  2526. "settable_per_mesh": false,
  2527. "settable_per_extruder": true
  2528. },
  2529. "speed_support_bottom":
  2530. {
  2531. "label": "Support Floor Speed",
  2532. "description": "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model.",
  2533. "unit": "mm/s",
  2534. "type": "float",
  2535. "default_value": 40,
  2536. "minimum_value": "0.1",
  2537. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2538. "maximum_value_warning": "150",
  2539. "enabled": "support_bottom_enable and support_enable",
  2540. "limit_to_extruder": "support_bottom_extruder_nr",
  2541. "value": "extruderValue(support_bottom_extruder_nr, 'speed_support_interface')",
  2542. "settable_per_mesh": false,
  2543. "settable_per_extruder": true
  2544. }
  2545. }
  2546. }
  2547. }
  2548. },
  2549. "speed_prime_tower":
  2550. {
  2551. "label": "Prime Tower Speed",
  2552. "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.",
  2553. "type": "float",
  2554. "unit": "mm/s",
  2555. "enabled": "resolveOrValue('prime_tower_enable')",
  2556. "default_value": 60,
  2557. "value": "speed_print",
  2558. "minimum_value": "0.1",
  2559. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2560. "maximum_value_warning": "150",
  2561. "settable_per_mesh": false,
  2562. "settable_per_extruder": true
  2563. }
  2564. }
  2565. },
  2566. "speed_travel":
  2567. {
  2568. "label": "Travel Speed",
  2569. "description": "The speed at which travel moves are made.",
  2570. "unit": "mm/s",
  2571. "type": "float",
  2572. "default_value": 120,
  2573. "minimum_value": "0.1",
  2574. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2575. "maximum_value_warning": "300",
  2576. "value": "speed_print if magic_spiralize else 120",
  2577. "settable_per_mesh": false,
  2578. "settable_per_extruder": true
  2579. },
  2580. "speed_layer_0":
  2581. {
  2582. "label": "Initial Layer Speed",
  2583. "description": "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate.",
  2584. "unit": "mm/s",
  2585. "type": "float",
  2586. "default_value": 30,
  2587. "value": "speed_print * 30 / 60",
  2588. "minimum_value": "0.1",
  2589. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2590. "maximum_value_warning": "300",
  2591. "settable_per_mesh": true,
  2592. "children":
  2593. {
  2594. "speed_print_layer_0":
  2595. {
  2596. "label": "Initial Layer Print Speed",
  2597. "description": "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate.",
  2598. "unit": "mm/s",
  2599. "type": "float",
  2600. "default_value": 30,
  2601. "value": "speed_layer_0",
  2602. "minimum_value": "0.1",
  2603. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2604. "maximum_value_warning": "300",
  2605. "settable_per_mesh": true
  2606. },
  2607. "speed_travel_layer_0":
  2608. {
  2609. "label": "Initial Layer Travel Speed",
  2610. "description": "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed.",
  2611. "unit": "mm/s",
  2612. "type": "float",
  2613. "default_value": 60,
  2614. "value": "speed_layer_0 * speed_travel / speed_print",
  2615. "minimum_value": "0.1",
  2616. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2617. "maximum_value_warning": "300",
  2618. "settable_per_extruder": true,
  2619. "settable_per_mesh": false
  2620. }
  2621. }
  2622. },
  2623. "skirt_brim_speed":
  2624. {
  2625. "label": "Skirt/Brim Speed",
  2626. "description": "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed.",
  2627. "unit": "mm/s",
  2628. "type": "float",
  2629. "default_value": 30,
  2630. "minimum_value": "0.1",
  2631. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2632. "maximum_value_warning": "300",
  2633. "value": "speed_layer_0",
  2634. "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim'",
  2635. "settable_per_mesh": false,
  2636. "settable_per_extruder": true,
  2637. "limit_to_extruder": "adhesion_extruder_nr"
  2638. },
  2639. "max_feedrate_z_override":
  2640. {
  2641. "label": "Maximum Z Speed",
  2642. "description": "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed.",
  2643. "unit": "mm/s",
  2644. "type": "float",
  2645. "default_value": 0,
  2646. "minimum_value": "0",
  2647. "maximum_value": "299792458000",
  2648. "maximum_value_warning": "machine_max_feedrate_z",
  2649. "settable_per_mesh": false,
  2650. "settable_per_extruder": true
  2651. },
  2652. "speed_slowdown_layers":
  2653. {
  2654. "label": "Number of Slower Layers",
  2655. "description": "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers.",
  2656. "type": "int",
  2657. "default_value": 2,
  2658. "resolve": "round(sum(extruderValues('speed_slowdown_layers')) / len(extruderValues('speed_slowdown_layers')))",
  2659. "minimum_value": "0",
  2660. "maximum_value_warning": "3.2 / resolveOrValue('layer_height')",
  2661. "settable_per_mesh": false,
  2662. "settable_per_extruder": false
  2663. },
  2664. "speed_equalize_flow_enabled":
  2665. {
  2666. "label": "Equalize Filament Flow",
  2667. "description": "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines.",
  2668. "type": "bool",
  2669. "default_value": false,
  2670. "settable_per_mesh": false,
  2671. "settable_per_extruder": true
  2672. },
  2673. "speed_equalize_flow_max":
  2674. {
  2675. "label": "Maximum Speed for Flow Equalization",
  2676. "description": "Maximum print speed when adjusting the print speed in order to equalize flow.",
  2677. "type": "float",
  2678. "unit": "mm/s",
  2679. "enabled": "speed_equalize_flow_enabled",
  2680. "default_value": 150,
  2681. "minimum_value": "0.1",
  2682. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  2683. "maximum_value_warning": "150",
  2684. "settable_per_mesh": false,
  2685. "settable_per_extruder": true
  2686. },
  2687. "acceleration_enabled":
  2688. {
  2689. "label": "Enable Acceleration Control",
  2690. "description": "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality.",
  2691. "type": "bool",
  2692. "default_value": false,
  2693. "resolve": "any(extruderValues('acceleration_enabled'))",
  2694. "settable_per_mesh": false,
  2695. "settable_per_extruder": false
  2696. },
  2697. "acceleration_print":
  2698. {
  2699. "label": "Print Acceleration",
  2700. "description": "The acceleration with which printing happens.",
  2701. "unit": "mm/s²",
  2702. "type": "float",
  2703. "minimum_value": "0.1",
  2704. "minimum_value_warning": "100",
  2705. "maximum_value_warning": "10000",
  2706. "default_value": 3000,
  2707. "enabled": "resolveOrValue('acceleration_enabled')",
  2708. "settable_per_mesh": true,
  2709. "children":
  2710. {
  2711. "acceleration_infill":
  2712. {
  2713. "label": "Infill Acceleration",
  2714. "description": "The acceleration with which infill is printed.",
  2715. "unit": "mm/s²",
  2716. "type": "float",
  2717. "minimum_value": "0.1",
  2718. "minimum_value_warning": "100",
  2719. "maximum_value_warning": "10000",
  2720. "default_value": 3000,
  2721. "value": "acceleration_print",
  2722. "enabled": "resolveOrValue('acceleration_enabled') and infill_sparse_density > 0",
  2723. "limit_to_extruder": "infill_extruder_nr",
  2724. "settable_per_mesh": true
  2725. },
  2726. "acceleration_wall":
  2727. {
  2728. "label": "Wall Acceleration",
  2729. "description": "The acceleration with which the walls are printed.",
  2730. "unit": "mm/s²",
  2731. "type": "float",
  2732. "minimum_value": "0.1",
  2733. "minimum_value_warning": "100",
  2734. "maximum_value_warning": "10000",
  2735. "default_value": 3000,
  2736. "value": "acceleration_print",
  2737. "enabled": "resolveOrValue('acceleration_enabled')",
  2738. "settable_per_mesh": true,
  2739. "children":
  2740. {
  2741. "acceleration_wall_0":
  2742. {
  2743. "label": "Outer Wall Acceleration",
  2744. "description": "The acceleration with which the outermost walls are printed.",
  2745. "unit": "mm/s²",
  2746. "type": "float",
  2747. "minimum_value": "0.1",
  2748. "minimum_value_warning": "100",
  2749. "maximum_value_warning": "10000",
  2750. "default_value": 3000,
  2751. "value": "acceleration_wall",
  2752. "enabled": "resolveOrValue('acceleration_enabled')",
  2753. "limit_to_extruder": "wall_0_extruder_nr",
  2754. "settable_per_mesh": true
  2755. },
  2756. "acceleration_wall_x":
  2757. {
  2758. "label": "Inner Wall Acceleration",
  2759. "description": "The acceleration with which all inner walls are printed.",
  2760. "unit": "mm/s²",
  2761. "type": "float",
  2762. "minimum_value": "0.1",
  2763. "minimum_value_warning": "100",
  2764. "maximum_value_warning": "10000",
  2765. "default_value": 3000,
  2766. "value": "acceleration_wall",
  2767. "enabled": "resolveOrValue('acceleration_enabled')",
  2768. "limit_to_extruder": "wall_x_extruder_nr",
  2769. "settable_per_mesh": true
  2770. }
  2771. }
  2772. },
  2773. "acceleration_roofing":
  2774. {
  2775. "label": "Top Surface Skin Acceleration",
  2776. "description": "The acceleration with which top surface skin layers are printed.",
  2777. "unit": "mm/s²",
  2778. "type": "float",
  2779. "minimum_value": "0.1",
  2780. "minimum_value_warning": "100",
  2781. "maximum_value_warning": "10000",
  2782. "default_value": 3000,
  2783. "value": "acceleration_topbottom",
  2784. "enabled": "resolveOrValue('acceleration_enabled') and roofing_layer_count > 0 and top_layers > 0",
  2785. "limit_to_extruder": "roofing_extruder_nr",
  2786. "settable_per_mesh": true
  2787. },
  2788. "acceleration_topbottom":
  2789. {
  2790. "label": "Top/Bottom Acceleration",
  2791. "description": "The acceleration with which top/bottom layers are printed.",
  2792. "unit": "mm/s²",
  2793. "type": "float",
  2794. "minimum_value": "0.1",
  2795. "minimum_value_warning": "100",
  2796. "maximum_value_warning": "10000",
  2797. "default_value": 3000,
  2798. "value": "acceleration_print",
  2799. "enabled": "resolveOrValue('acceleration_enabled')",
  2800. "limit_to_extruder": "top_bottom_extruder_nr",
  2801. "settable_per_mesh": true
  2802. },
  2803. "acceleration_support":
  2804. {
  2805. "label": "Support Acceleration",
  2806. "description": "The acceleration with which the support structure is printed.",
  2807. "unit": "mm/s²",
  2808. "type": "float",
  2809. "minimum_value": "0.1",
  2810. "minimum_value_warning": "100",
  2811. "maximum_value_warning": "10000",
  2812. "default_value": 3000,
  2813. "value": "acceleration_print",
  2814. "enabled": "resolveOrValue('acceleration_enabled') and support_enable",
  2815. "settable_per_mesh": false,
  2816. "limit_to_extruder": "support_extruder_nr",
  2817. "settable_per_extruder": true,
  2818. "children":
  2819. {
  2820. "acceleration_support_infill":
  2821. {
  2822. "label": "Support Infill Acceleration",
  2823. "description": "The acceleration with which the infill of support is printed.",
  2824. "unit": "mm/s²",
  2825. "type": "float",
  2826. "default_value": 3000,
  2827. "value": "acceleration_support",
  2828. "minimum_value": "0.1",
  2829. "minimum_value_warning": "100",
  2830. "maximum_value_warning": "10000",
  2831. "enabled": "resolveOrValue('acceleration_enabled') and support_enable",
  2832. "limit_to_extruder": "support_infill_extruder_nr",
  2833. "settable_per_mesh": false,
  2834. "settable_per_extruder": true
  2835. },
  2836. "acceleration_support_interface":
  2837. {
  2838. "label": "Support Interface Acceleration",
  2839. "description": "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality.",
  2840. "unit": "mm/s²",
  2841. "type": "float",
  2842. "default_value": 3000,
  2843. "value": "acceleration_support",
  2844. "minimum_value": "0.1",
  2845. "minimum_value_warning": "100",
  2846. "maximum_value_warning": "10000",
  2847. "enabled": "resolveOrValue('acceleration_enabled') and support_interface_enable and support_enable",
  2848. "limit_to_extruder": "support_interface_extruder_nr",
  2849. "settable_per_mesh": false,
  2850. "settable_per_extruder": true,
  2851. "children":
  2852. {
  2853. "acceleration_support_roof":
  2854. {
  2855. "label": "Support Roof Acceleration",
  2856. "description": "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality.",
  2857. "unit": "mm/s²",
  2858. "type": "float",
  2859. "default_value": 3000,
  2860. "value": "extruderValue(support_roof_extruder_nr, 'acceleration_support_interface')",
  2861. "minimum_value": "0.1",
  2862. "minimum_value_warning": "100",
  2863. "maximum_value_warning": "10000",
  2864. "enabled": "acceleration_enabled and support_roof_enable and support_enable",
  2865. "limit_to_extruder": "support_roof_extruder_nr",
  2866. "settable_per_mesh": false,
  2867. "settable_per_extruder": true
  2868. },
  2869. "acceleration_support_bottom":
  2870. {
  2871. "label": "Support Floor Acceleration",
  2872. "description": "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model.",
  2873. "unit": "mm/s²",
  2874. "type": "float",
  2875. "default_value": 3000,
  2876. "value": "extruderValue(support_bottom_extruder_nr, 'acceleration_support_interface')",
  2877. "minimum_value": "0.1",
  2878. "minimum_value_warning": "100",
  2879. "maximum_value_warning": "10000",
  2880. "enabled": "acceleration_enabled and support_bottom_enable and support_enable",
  2881. "limit_to_extruder": "support_bottom_extruder_nr",
  2882. "settable_per_mesh": false,
  2883. "settable_per_extruder": true
  2884. }
  2885. }
  2886. }
  2887. }
  2888. },
  2889. "acceleration_prime_tower":
  2890. {
  2891. "label": "Prime Tower Acceleration",
  2892. "description": "The acceleration with which the prime tower is printed.",
  2893. "unit": "mm/s²",
  2894. "type": "float",
  2895. "minimum_value": "0.1",
  2896. "minimum_value_warning": "100",
  2897. "maximum_value_warning": "10000",
  2898. "default_value": 3000,
  2899. "value": "acceleration_print",
  2900. "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('acceleration_enabled')",
  2901. "settable_per_mesh": false
  2902. }
  2903. }
  2904. },
  2905. "acceleration_travel":
  2906. {
  2907. "label": "Travel Acceleration",
  2908. "description": "The acceleration with which travel moves are made.",
  2909. "unit": "mm/s²",
  2910. "type": "float",
  2911. "default_value": 5000,
  2912. "minimum_value": "0.1",
  2913. "minimum_value_warning": "100",
  2914. "maximum_value_warning": "10000",
  2915. "value": "acceleration_print if magic_spiralize else 5000",
  2916. "enabled": "resolveOrValue('acceleration_enabled')",
  2917. "settable_per_mesh": false
  2918. },
  2919. "acceleration_layer_0":
  2920. {
  2921. "label": "Initial Layer Acceleration",
  2922. "description": "The acceleration for the initial layer.",
  2923. "unit": "mm/s²",
  2924. "type": "float",
  2925. "default_value": 3000,
  2926. "value": "acceleration_print",
  2927. "minimum_value": "0.1",
  2928. "minimum_value_warning": "100",
  2929. "maximum_value_warning": "10000",
  2930. "enabled": "resolveOrValue('acceleration_enabled')",
  2931. "settable_per_mesh": true,
  2932. "children":
  2933. {
  2934. "acceleration_print_layer_0":
  2935. {
  2936. "label": "Initial Layer Print Acceleration",
  2937. "description": "The acceleration during the printing of the initial layer.",
  2938. "unit": "mm/s",
  2939. "type": "float",
  2940. "default_value": 3000,
  2941. "value": "acceleration_layer_0",
  2942. "minimum_value": "0.1",
  2943. "minimum_value_warning": "100",
  2944. "maximum_value_warning": "10000",
  2945. "enabled": "resolveOrValue('acceleration_enabled')",
  2946. "settable_per_mesh": true
  2947. },
  2948. "acceleration_travel_layer_0":
  2949. {
  2950. "label": "Initial Layer Travel Acceleration",
  2951. "description": "The acceleration for travel moves in the initial layer.",
  2952. "unit": "mm/s",
  2953. "type": "float",
  2954. "default_value": 3000,
  2955. "value": "acceleration_layer_0 * acceleration_travel / acceleration_print",
  2956. "minimum_value": "0.1",
  2957. "minimum_value_warning": "100",
  2958. "maximum_value_warning": "10000",
  2959. "enabled": "resolveOrValue('acceleration_enabled')",
  2960. "settable_per_extruder": true,
  2961. "settable_per_mesh": false
  2962. }
  2963. }
  2964. },
  2965. "acceleration_skirt_brim":
  2966. {
  2967. "label": "Skirt/Brim Acceleration",
  2968. "description": "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration.",
  2969. "unit": "mm/s²",
  2970. "type": "float",
  2971. "default_value": 3000,
  2972. "value": "acceleration_layer_0",
  2973. "minimum_value": "0.1",
  2974. "minimum_value_warning": "100",
  2975. "maximum_value_warning": "10000",
  2976. "enabled": "resolveOrValue('acceleration_enabled')",
  2977. "settable_per_mesh": false,
  2978. "limit_to_extruder": "adhesion_extruder_nr"
  2979. },
  2980. "jerk_enabled":
  2981. {
  2982. "label": "Enable Jerk Control",
  2983. "description": "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality.",
  2984. "type": "bool",
  2985. "default_value": false,
  2986. "resolve": "any(extruderValues('jerk_enabled'))",
  2987. "settable_per_mesh": false,
  2988. "settable_per_extruder": false
  2989. },
  2990. "jerk_print":
  2991. {
  2992. "label": "Print Jerk",
  2993. "description": "The maximum instantaneous velocity change of the print head.",
  2994. "unit": "mm/s",
  2995. "type": "float",
  2996. "minimum_value": "0",
  2997. "maximum_value_warning": "50",
  2998. "default_value": 20,
  2999. "enabled": "resolveOrValue('jerk_enabled')",
  3000. "settable_per_mesh": true,
  3001. "children":
  3002. {
  3003. "jerk_infill":
  3004. {
  3005. "label": "Infill Jerk",
  3006. "description": "The maximum instantaneous velocity change with which infill is printed.",
  3007. "unit": "mm/s",
  3008. "type": "float",
  3009. "minimum_value": "0",
  3010. "maximum_value_warning": "50",
  3011. "default_value": 20,
  3012. "value": "jerk_print",
  3013. "enabled": "resolveOrValue('jerk_enabled') and infill_sparse_density > 0",
  3014. "limit_to_extruder": "infill_extruder_nr",
  3015. "settable_per_mesh": true
  3016. },
  3017. "jerk_wall":
  3018. {
  3019. "label": "Wall Jerk",
  3020. "description": "The maximum instantaneous velocity change with which the walls are printed.",
  3021. "unit": "mm/s",
  3022. "type": "float",
  3023. "minimum_value": "0",
  3024. "maximum_value_warning": "50",
  3025. "default_value": 20,
  3026. "value": "jerk_print",
  3027. "enabled": "resolveOrValue('jerk_enabled')",
  3028. "settable_per_mesh": true,
  3029. "children":
  3030. {
  3031. "jerk_wall_0":
  3032. {
  3033. "label": "Outer Wall Jerk",
  3034. "description": "The maximum instantaneous velocity change with which the outermost walls are printed.",
  3035. "unit": "mm/s",
  3036. "type": "float",
  3037. "minimum_value": "0",
  3038. "maximum_value_warning": "50",
  3039. "default_value": 20,
  3040. "value": "jerk_wall",
  3041. "enabled": "resolveOrValue('jerk_enabled')",
  3042. "limit_to_extruder": "wall_0_extruder_nr",
  3043. "settable_per_mesh": true
  3044. },
  3045. "jerk_wall_x":
  3046. {
  3047. "label": "Inner Wall Jerk",
  3048. "description": "The maximum instantaneous velocity change with which all inner walls are printed.",
  3049. "unit": "mm/s",
  3050. "type": "float",
  3051. "minimum_value": "0",
  3052. "maximum_value_warning": "50",
  3053. "default_value": 20,
  3054. "value": "jerk_wall",
  3055. "enabled": "resolveOrValue('jerk_enabled')",
  3056. "limit_to_extruder": "wall_x_extruder_nr",
  3057. "settable_per_mesh": true
  3058. }
  3059. }
  3060. },
  3061. "jerk_roofing":
  3062. {
  3063. "label": "Top Surface Skin Jerk",
  3064. "description": "The maximum instantaneous velocity change with which top surface skin layers are printed.",
  3065. "unit": "mm/s",
  3066. "type": "float",
  3067. "minimum_value": "0",
  3068. "maximum_value_warning": "50",
  3069. "default_value": 20,
  3070. "value": "jerk_topbottom",
  3071. "enabled": "resolveOrValue('jerk_enabled') and roofing_layer_count > 0 and top_layers > 0",
  3072. "limit_to_extruder": "roofing_extruder_nr",
  3073. "settable_per_mesh": true
  3074. },
  3075. "jerk_topbottom":
  3076. {
  3077. "label": "Top/Bottom Jerk",
  3078. "description": "The maximum instantaneous velocity change with which top/bottom layers are printed.",
  3079. "unit": "mm/s",
  3080. "type": "float",
  3081. "minimum_value": "0",
  3082. "maximum_value_warning": "50",
  3083. "default_value": 20,
  3084. "value": "jerk_print",
  3085. "enabled": "resolveOrValue('jerk_enabled')",
  3086. "limit_to_extruder": "top_bottom_extruder_nr",
  3087. "settable_per_mesh": true
  3088. },
  3089. "jerk_support":
  3090. {
  3091. "label": "Support Jerk",
  3092. "description": "The maximum instantaneous velocity change with which the support structure is printed.",
  3093. "unit": "mm/s",
  3094. "type": "float",
  3095. "minimum_value": "0",
  3096. "maximum_value_warning": "50",
  3097. "default_value": 20,
  3098. "value": "jerk_print",
  3099. "enabled": "resolveOrValue('jerk_enabled') and support_enable",
  3100. "settable_per_mesh": false,
  3101. "settable_per_extruder": true,
  3102. "limit_to_extruder": "support_extruder_nr",
  3103. "children":
  3104. {
  3105. "jerk_support_infill":
  3106. {
  3107. "label": "Support Infill Jerk",
  3108. "description": "The maximum instantaneous velocity change with which the infill of support is printed.",
  3109. "unit": "mm/s",
  3110. "type": "float",
  3111. "default_value": 20,
  3112. "value": "jerk_support",
  3113. "minimum_value": "0",
  3114. "maximum_value_warning": "50",
  3115. "enabled": "resolveOrValue('jerk_enabled') and support_enable",
  3116. "limit_to_extruder": "support_infill_extruder_nr",
  3117. "settable_per_mesh": false,
  3118. "settable_per_extruder": true
  3119. },
  3120. "jerk_support_interface":
  3121. {
  3122. "label": "Support Interface Jerk",
  3123. "description": "The maximum instantaneous velocity change with which the roofs and floors of support are printed.",
  3124. "unit": "mm/s",
  3125. "type": "float",
  3126. "default_value": 20,
  3127. "value": "jerk_support",
  3128. "minimum_value": "0",
  3129. "maximum_value_warning": "50",
  3130. "enabled": "resolveOrValue('jerk_enabled') and support_interface_enable and support_enable",
  3131. "limit_to_extruder": "support_interface_extruder_nr",
  3132. "settable_per_mesh": false,
  3133. "settable_per_extruder": true,
  3134. "children":
  3135. {
  3136. "jerk_support_roof":
  3137. {
  3138. "label": "Support Roof Jerk",
  3139. "description": "The maximum instantaneous velocity change with which the roofs of support are printed.",
  3140. "unit": "mm/s",
  3141. "type": "float",
  3142. "default_value": 20,
  3143. "value": "extruderValue(support_roof_extruder_nr, 'jerk_support_interface')",
  3144. "minimum_value": "0",
  3145. "maximum_value_warning": "50",
  3146. "enabled": "resolveOrValue('jerk_enabled') and support_roof_enable and support_enable",
  3147. "limit_to_extruder": "support_roof_extruder_nr",
  3148. "settable_per_mesh": false,
  3149. "settable_per_extruder": true
  3150. },
  3151. "jerk_support_bottom":
  3152. {
  3153. "label": "Support Floor Jerk",
  3154. "description": "The maximum instantaneous velocity change with which the floors of support are printed.",
  3155. "unit": "mm/s",
  3156. "type": "float",
  3157. "default_value": 20,
  3158. "value": "extruderValue(support_roof_extruder_nr, 'jerk_support_interface')",
  3159. "minimum_value": "0",
  3160. "maximum_value_warning": "50",
  3161. "enabled": "resolveOrValue('jerk_enabled') and support_bottom_enable and support_enable",
  3162. "limit_to_extruder": "support_bottom_extruder_nr",
  3163. "settable_per_mesh": false,
  3164. "settable_per_extruder": true
  3165. }
  3166. }
  3167. }
  3168. }
  3169. },
  3170. "jerk_prime_tower":
  3171. {
  3172. "label": "Prime Tower Jerk",
  3173. "description": "The maximum instantaneous velocity change with which the prime tower is printed.",
  3174. "unit": "mm/s",
  3175. "type": "float",
  3176. "minimum_value": "0",
  3177. "maximum_value_warning": "50",
  3178. "default_value": 20,
  3179. "value": "jerk_print",
  3180. "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('jerk_enabled')",
  3181. "settable_per_mesh": false
  3182. }
  3183. }
  3184. },
  3185. "jerk_travel":
  3186. {
  3187. "label": "Travel Jerk",
  3188. "description": "The maximum instantaneous velocity change with which travel moves are made.",
  3189. "unit": "mm/s",
  3190. "type": "float",
  3191. "default_value": 30,
  3192. "minimum_value": "0",
  3193. "maximum_value_warning": "50",
  3194. "value": "jerk_print if magic_spiralize else 30",
  3195. "enabled": "resolveOrValue('jerk_enabled')",
  3196. "settable_per_mesh": false
  3197. },
  3198. "jerk_layer_0":
  3199. {
  3200. "label": "Initial Layer Jerk",
  3201. "description": "The print maximum instantaneous velocity change for the initial layer.",
  3202. "unit": "mm/s",
  3203. "type": "float",
  3204. "default_value": 20,
  3205. "value": "jerk_print",
  3206. "minimum_value": "0",
  3207. "maximum_value_warning": "50",
  3208. "enabled": "resolveOrValue('jerk_enabled')",
  3209. "settable_per_mesh": true,
  3210. "children":
  3211. {
  3212. "jerk_print_layer_0":
  3213. {
  3214. "label": "Initial Layer Print Jerk",
  3215. "description": "The maximum instantaneous velocity change during the printing of the initial layer.",
  3216. "unit": "mm/s",
  3217. "type": "float",
  3218. "default_value": 20,
  3219. "value": "jerk_layer_0",
  3220. "minimum_value": "0",
  3221. "maximum_value_warning": "50",
  3222. "enabled": "resolveOrValue('jerk_enabled')",
  3223. "settable_per_mesh": true
  3224. },
  3225. "jerk_travel_layer_0":
  3226. {
  3227. "label": "Initial Layer Travel Jerk",
  3228. "description": "The acceleration for travel moves in the initial layer.",
  3229. "unit": "mm/s",
  3230. "type": "float",
  3231. "default_value": 20,
  3232. "value": "jerk_layer_0 * jerk_travel / jerk_print",
  3233. "minimum_value": "0",
  3234. "maximum_value_warning": "50",
  3235. "enabled": "resolveOrValue('jerk_enabled')",
  3236. "settable_per_extruder": true,
  3237. "settable_per_mesh": false
  3238. }
  3239. }
  3240. },
  3241. "jerk_skirt_brim":
  3242. {
  3243. "label": "Skirt/Brim Jerk",
  3244. "description": "The maximum instantaneous velocity change with which the skirt and brim are printed.",
  3245. "unit": "mm/s",
  3246. "type": "float",
  3247. "default_value": 20,
  3248. "minimum_value": "0",
  3249. "maximum_value_warning": "50",
  3250. "value": "jerk_layer_0",
  3251. "enabled": "resolveOrValue('jerk_enabled')",
  3252. "settable_per_mesh": false,
  3253. "limit_to_extruder": "adhesion_extruder_nr"
  3254. }
  3255. }
  3256. },
  3257. "travel":
  3258. {
  3259. "label": "Travel",
  3260. "icon": "category_travel",
  3261. "description": "travel",
  3262. "type": "category",
  3263. "children":
  3264. {
  3265. "retraction_combing":
  3266. {
  3267. "label": "Combing Mode",
  3268. "description": "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only.",
  3269. "type": "enum",
  3270. "options":
  3271. {
  3272. "off": "Off",
  3273. "all": "All",
  3274. "noskin": "No Skin"
  3275. },
  3276. "default_value": "all",
  3277. "resolve": "'noskin' if 'noskin' in extruderValues('retraction_combing') else ('all' if 'all' in extruderValues('retraction_combing') else 'off')",
  3278. "settable_per_mesh": false,
  3279. "settable_per_extruder": false
  3280. },
  3281. "travel_retract_before_outer_wall":
  3282. {
  3283. "label": "Retract Before Outer Wall",
  3284. "description": "Always retract when moving to start an outer wall.",
  3285. "type": "bool",
  3286. "default_value": false,
  3287. "enabled": "retraction_enable",
  3288. "settable_per_mesh": false,
  3289. "settable_per_extruder": false
  3290. },
  3291. "travel_avoid_other_parts":
  3292. {
  3293. "label": "Avoid Printed Parts When Traveling",
  3294. "description": "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled.",
  3295. "type": "bool",
  3296. "default_value": true,
  3297. "enabled": "resolveOrValue('retraction_combing') != 'off'",
  3298. "settable_per_mesh": false,
  3299. "settable_per_extruder": true
  3300. },
  3301. "travel_avoid_distance":
  3302. {
  3303. "label": "Travel Avoid Distance",
  3304. "description": "The distance between the nozzle and already printed parts when avoiding during travel moves.",
  3305. "unit": "mm",
  3306. "type": "float",
  3307. "default_value": 0.625,
  3308. "value": "machine_nozzle_tip_outer_diameter / 2 * 1.25",
  3309. "minimum_value": "0",
  3310. "minimum_value_warning": "machine_nozzle_tip_outer_diameter * 0.5",
  3311. "maximum_value_warning": "machine_nozzle_tip_outer_diameter * 5",
  3312. "enabled": "resolveOrValue('retraction_combing') != 'off' and travel_avoid_other_parts",
  3313. "settable_per_mesh": false,
  3314. "settable_per_extruder": true
  3315. },
  3316. "start_layers_at_same_position":
  3317. {
  3318. "label": "Start Layers with the Same Part",
  3319. "description": "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time.",
  3320. "type": "bool",
  3321. "default_value": false,
  3322. "enabled": false,
  3323. "settable_per_mesh": false,
  3324. "settable_per_extruder": false,
  3325. "settable_per_meshgroup": true
  3326. },
  3327. "layer_start_x":
  3328. {
  3329. "label": "Layer Start X",
  3330. "description": "The X coordinate of the position near where to find the part to start printing each layer.",
  3331. "unit": "mm",
  3332. "type": "float",
  3333. "default_value": 0.0,
  3334. "minimum_value": "machine_width / -2 if machine_center_is_zero else 0",
  3335. "settable_per_mesh": false,
  3336. "settable_per_extruder": true,
  3337. "settable_per_meshgroup": true
  3338. },
  3339. "layer_start_y":
  3340. {
  3341. "label": "Layer Start Y",
  3342. "description": "The Y coordinate of the position near where to find the part to start printing each layer.",
  3343. "unit": "mm",
  3344. "type": "float",
  3345. "default_value": 0.0,
  3346. "minimum_value": "machine_depth / -2 if machine_center_is_zero else 0",
  3347. "settable_per_mesh": false,
  3348. "settable_per_extruder": true,
  3349. "settable_per_meshgroup": true
  3350. },
  3351. "retraction_hop_enabled": {
  3352. "label": "Z Hop When Retracted",
  3353. "description": "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate.",
  3354. "type": "bool",
  3355. "default_value": false,
  3356. "enabled": "retraction_enable",
  3357. "settable_per_mesh": false,
  3358. "settable_per_extruder": true
  3359. },
  3360. "retraction_hop_only_when_collides": {
  3361. "label": "Z Hop Only Over Printed Parts",
  3362. "description": "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling.",
  3363. "type": "bool",
  3364. "default_value": false,
  3365. "enabled": "retraction_enable and retraction_hop_enabled and travel_avoid_other_parts",
  3366. "settable_per_mesh": false,
  3367. "settable_per_extruder": true
  3368. },
  3369. "retraction_hop": {
  3370. "label": "Z Hop Height",
  3371. "description": "The height difference when performing a Z Hop.",
  3372. "unit": "mm",
  3373. "type": "float",
  3374. "default_value": 1,
  3375. "minimum_value_warning": "0",
  3376. "maximum_value_warning": "10",
  3377. "enabled": "retraction_enable and retraction_hop_enabled",
  3378. "settable_per_mesh": false,
  3379. "settable_per_extruder": true
  3380. },
  3381. "retraction_hop_after_extruder_switch": {
  3382. "label": "Z Hop After Extruder Switch",
  3383. "description": "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print.",
  3384. "type": "bool",
  3385. "default_value": true,
  3386. "enabled": "retraction_hop_enabled and extruders_enabled_count > 1",
  3387. "settable_per_mesh": false,
  3388. "settable_per_extruder": true
  3389. }
  3390. }
  3391. },
  3392. "cooling":
  3393. {
  3394. "label": "Cooling",
  3395. "icon": "category_cool",
  3396. "description": "Cooling",
  3397. "type": "category",
  3398. "children":
  3399. {
  3400. "cool_fan_enabled":
  3401. {
  3402. "label": "Enable Print Cooling",
  3403. "description": "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs.",
  3404. "type": "bool",
  3405. "default_value": true,
  3406. "settable_per_mesh": false,
  3407. "settable_per_extruder": true
  3408. },
  3409. "cool_fan_speed":
  3410. {
  3411. "label": "Fan Speed",
  3412. "description": "The speed at which the print cooling fans spin.",
  3413. "unit": "%",
  3414. "type": "float",
  3415. "minimum_value": "0",
  3416. "maximum_value": "100",
  3417. "default_value": 100,
  3418. "value": "100.0 if cool_fan_enabled else 0.0",
  3419. "enabled": "cool_fan_enabled",
  3420. "settable_per_mesh": false,
  3421. "settable_per_extruder": true,
  3422. "children":
  3423. {
  3424. "cool_fan_speed_min":
  3425. {
  3426. "label": "Regular Fan Speed",
  3427. "description": "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed.",
  3428. "unit": "%",
  3429. "type": "float",
  3430. "minimum_value": "0",
  3431. "maximum_value": "100",
  3432. "value": "cool_fan_speed",
  3433. "default_value": 100,
  3434. "enabled": "cool_fan_enabled",
  3435. "settable_per_mesh": false,
  3436. "settable_per_extruder": true
  3437. },
  3438. "cool_fan_speed_max":
  3439. {
  3440. "label": "Maximum Fan Speed",
  3441. "description": "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit.",
  3442. "unit": "%",
  3443. "type": "float",
  3444. "minimum_value": "max(0, cool_fan_speed_min)",
  3445. "maximum_value": "100",
  3446. "default_value": 100,
  3447. "enabled": "cool_fan_enabled",
  3448. "value": "cool_fan_speed",
  3449. "settable_per_mesh": false,
  3450. "settable_per_extruder": true
  3451. }
  3452. }
  3453. },
  3454. "cool_min_layer_time_fan_speed_max":
  3455. {
  3456. "label": "Regular/Maximum Fan Speed Threshold",
  3457. "description": "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed.",
  3458. "unit": "s",
  3459. "type": "float",
  3460. "default_value": 10,
  3461. "maximum_value_warning": "600",
  3462. "settable_per_mesh": false,
  3463. "settable_per_extruder": true
  3464. },
  3465. "cool_fan_speed_0":
  3466. {
  3467. "label": "Initial Fan Speed",
  3468. "description": "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height.",
  3469. "unit": "%",
  3470. "type": "float",
  3471. "minimum_value": "0",
  3472. "maximum_value": "100",
  3473. "default_value": 0,
  3474. "enabled": "cool_fan_enabled",
  3475. "settable_per_mesh": false,
  3476. "settable_per_extruder": true
  3477. },
  3478. "cool_fan_full_at_height":
  3479. {
  3480. "label": "Regular Fan Speed at Height",
  3481. "description": "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed.",
  3482. "unit": "mm",
  3483. "type": "float",
  3484. "default_value": 0.5,
  3485. "value": "0 if resolveOrValue('adhesion_type') == 'raft' else resolveOrValue('layer_height_0')",
  3486. "minimum_value": "0",
  3487. "maximum_value_warning": "10.0",
  3488. "settable_per_mesh": false,
  3489. "settable_per_extruder": true,
  3490. "children":
  3491. {
  3492. "cool_fan_full_layer":
  3493. {
  3494. "label": "Regular Fan Speed at Layer",
  3495. "description": "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number.",
  3496. "type": "int",
  3497. "default_value": 2,
  3498. "minimum_value": "1",
  3499. "maximum_value_warning": "10 / resolveOrValue('layer_height')",
  3500. "value": "max(1, int(math.floor((cool_fan_full_at_height - resolveOrValue('layer_height_0')) / resolveOrValue('layer_height')) + 2))",
  3501. "settable_per_mesh": false,
  3502. "settable_per_extruder": true
  3503. }
  3504. }
  3505. },
  3506. "cool_min_layer_time":
  3507. {
  3508. "label": "Minimum Layer Time",
  3509. "description": "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated.",
  3510. "unit": "s",
  3511. "type": "float",
  3512. "default_value": 5,
  3513. "minimum_value": "0",
  3514. "maximum_value_warning": "600",
  3515. "settable_per_mesh": false,
  3516. "settable_per_extruder": true
  3517. },
  3518. "cool_min_speed":
  3519. {
  3520. "label": "Minimum Speed",
  3521. "description": "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality.",
  3522. "unit": "mm/s",
  3523. "type": "float",
  3524. "default_value": 10,
  3525. "minimum_value": "0",
  3526. "maximum_value_warning": "100",
  3527. "settable_per_mesh": false,
  3528. "settable_per_extruder": true
  3529. },
  3530. "cool_lift_head":
  3531. {
  3532. "label": "Lift Head",
  3533. "description": "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached.",
  3534. "type": "bool",
  3535. "default_value": false,
  3536. "settable_per_mesh": false,
  3537. "settable_per_extruder": true
  3538. }
  3539. }
  3540. },
  3541. "support":
  3542. {
  3543. "label": "Support",
  3544. "type": "category",
  3545. "icon": "category_support",
  3546. "description": "Support",
  3547. "children":
  3548. {
  3549. "support_enable":
  3550. {
  3551. "label": "Generate Support",
  3552. "description": "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing.",
  3553. "type": "bool",
  3554. "default_value": false,
  3555. "settable_per_mesh": true,
  3556. "settable_per_extruder": false
  3557. },
  3558. "support_extruder_nr":
  3559. {
  3560. "label": "Support Extruder",
  3561. "description": "The extruder train to use for printing the support. This is used in multi-extrusion.",
  3562. "type": "extruder",
  3563. "default_value": "0",
  3564. "value": "-1",
  3565. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3566. "settable_per_mesh": false,
  3567. "settable_per_extruder": false,
  3568. "children": {
  3569. "support_infill_extruder_nr":
  3570. {
  3571. "label": "Support Infill Extruder",
  3572. "description": "The extruder train to use for printing the infill of the support. This is used in multi-extrusion.",
  3573. "type": "extruder",
  3574. "default_value": "0",
  3575. "value": "support_extruder_nr",
  3576. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3577. "settable_per_mesh": false,
  3578. "settable_per_extruder": false
  3579. },
  3580. "support_extruder_nr_layer_0":
  3581. {
  3582. "label": "First Layer Support Extruder",
  3583. "description": "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion.",
  3584. "type": "extruder",
  3585. "default_value": "0",
  3586. "value": "support_extruder_nr",
  3587. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3588. "settable_per_mesh": false,
  3589. "settable_per_extruder": false
  3590. },
  3591. "support_interface_extruder_nr":
  3592. {
  3593. "label": "Support Interface Extruder",
  3594. "description": "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion.",
  3595. "type": "extruder",
  3596. "default_value": "0",
  3597. "value": "support_extruder_nr",
  3598. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3599. "settable_per_mesh": false,
  3600. "settable_per_extruder": false,
  3601. "children":
  3602. {
  3603. "support_roof_extruder_nr":
  3604. {
  3605. "label": "Support Roof Extruder",
  3606. "description": "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion.",
  3607. "type": "extruder",
  3608. "default_value": "0",
  3609. "value": "support_interface_extruder_nr",
  3610. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3611. "settable_per_mesh": false,
  3612. "settable_per_extruder": false
  3613. },
  3614. "support_bottom_extruder_nr":
  3615. {
  3616. "label": "Support Floor Extruder",
  3617. "description": "The extruder train to use for printing the floors of the support. This is used in multi-extrusion.",
  3618. "type": "extruder",
  3619. "default_value": "0",
  3620. "value": "support_interface_extruder_nr",
  3621. "enabled": "(support_enable or support_tree_enable) and extruders_enabled_count > 1",
  3622. "settable_per_mesh": false,
  3623. "settable_per_extruder": false
  3624. }
  3625. }
  3626. }
  3627. }
  3628. },
  3629. "support_type":
  3630. {
  3631. "label": "Support Placement",
  3632. "description": "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model.",
  3633. "type": "enum",
  3634. "options":
  3635. {
  3636. "buildplate": "Touching Buildplate",
  3637. "everywhere": "Everywhere"
  3638. },
  3639. "default_value": "everywhere",
  3640. "resolve": "'everywhere' if 'everywhere' in extruderValues('support_type') else 'buildplate'",
  3641. "enabled": "support_enable or support_tree_enable",
  3642. "settable_per_mesh": false,
  3643. "settable_per_extruder": false
  3644. },
  3645. "support_angle":
  3646. {
  3647. "label": "Support Overhang Angle",
  3648. "description": "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support.",
  3649. "unit": "°",
  3650. "type": "float",
  3651. "minimum_value": "0",
  3652. "maximum_value": "90",
  3653. "maximum_value_warning": "80",
  3654. "default_value": 50,
  3655. "limit_to_extruder": "support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr",
  3656. "enabled": "support_enable or support_tree_enable",
  3657. "settable_per_mesh": true
  3658. },
  3659. "support_pattern":
  3660. {
  3661. "label": "Support Pattern",
  3662. "description": "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support.",
  3663. "type": "enum",
  3664. "options":
  3665. {
  3666. "lines": "Lines",
  3667. "grid": "Grid",
  3668. "triangles": "Triangles",
  3669. "concentric": "Concentric",
  3670. "concentric_3d": "Concentric 3D",
  3671. "zigzag": "Zig Zag",
  3672. "cross": "Cross"
  3673. },
  3674. "default_value": "zigzag",
  3675. "enabled": "support_enable or support_tree_enable",
  3676. "limit_to_extruder": "support_infill_extruder_nr",
  3677. "settable_per_mesh": false,
  3678. "settable_per_extruder": true
  3679. },
  3680. "zig_zaggify_support":
  3681. {
  3682. "label": "Connect Support Lines",
  3683. "description": "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material.",
  3684. "type": "bool",
  3685. "default_value": false,
  3686. "value": "support_pattern == 'cross'",
  3687. "enabled": "support_pattern == 'grid' or support_pattern == 'triangles' or support_pattern == 'cross'",
  3688. "limit_to_extruder": "support_infill_extruder_nr",
  3689. "settable_per_mesh": false,
  3690. "settable_per_extruder": true
  3691. },
  3692. "support_connect_zigzags":
  3693. {
  3694. "label": "Connect Support ZigZags",
  3695. "description": "Connect the ZigZags. This will increase the strength of the zig zag support structure.",
  3696. "type": "bool",
  3697. "default_value": true,
  3698. "enabled": "(support_enable or support_tree_enable) and support_pattern == 'zigzag'",
  3699. "limit_to_extruder": "support_infill_extruder_nr",
  3700. "settable_per_mesh": false,
  3701. "settable_per_extruder": true
  3702. },
  3703. "support_infill_rate":
  3704. {
  3705. "label": "Support Density",
  3706. "description": "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove.",
  3707. "unit": "%",
  3708. "type": "float",
  3709. "minimum_value": "0",
  3710. "maximum_value_warning": "100",
  3711. "default_value": 15,
  3712. "value": "15 if support_enable else 0 if support_tree_enable else 15",
  3713. "enabled": "support_enable or support_tree_enable",
  3714. "limit_to_extruder": "support_infill_extruder_nr",
  3715. "settable_per_mesh": false,
  3716. "settable_per_extruder": true,
  3717. "children":
  3718. {
  3719. "support_line_distance":
  3720. {
  3721. "label": "Support Line Distance",
  3722. "description": "Distance between the printed support structure lines. This setting is calculated by the support density.",
  3723. "unit": "mm",
  3724. "type": "float",
  3725. "minimum_value": "0",
  3726. "minimum_value_warning": "support_line_width",
  3727. "default_value": 2.66,
  3728. "enabled": "support_enable or support_tree_enable",
  3729. "value": "0 if support_infill_rate == 0 else (support_line_width * 100) / support_infill_rate * (2 if support_pattern == 'grid' else (3 if support_pattern == 'triangles' else 1))",
  3730. "limit_to_extruder": "support_infill_extruder_nr",
  3731. "settable_per_mesh": false,
  3732. "settable_per_extruder": true
  3733. }
  3734. }
  3735. },
  3736. "support_z_distance":
  3737. {
  3738. "label": "Support Z Distance",
  3739. "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height.",
  3740. "unit": "mm",
  3741. "type": "float",
  3742. "minimum_value": "0",
  3743. "maximum_value_warning": "machine_nozzle_size",
  3744. "default_value": 0.1,
  3745. "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr",
  3746. "enabled": "support_enable or support_tree_enable",
  3747. "settable_per_mesh": true,
  3748. "children":
  3749. {
  3750. "support_top_distance":
  3751. {
  3752. "label": "Support Top Distance",
  3753. "description": "Distance from the top of the support to the print.",
  3754. "unit": "mm",
  3755. "minimum_value": "0",
  3756. "maximum_value_warning": "machine_nozzle_size",
  3757. "default_value": 0.1,
  3758. "type": "float",
  3759. "enabled": "support_enable or support_tree_enable",
  3760. "value": "extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance')",
  3761. "limit_to_extruder": "support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr",
  3762. "settable_per_mesh": true
  3763. },
  3764. "support_bottom_distance":
  3765. {
  3766. "label": "Support Bottom Distance",
  3767. "description": "Distance from the print to the bottom of the support.",
  3768. "unit": "mm",
  3769. "minimum_value": "0",
  3770. "maximum_value_warning": "machine_nozzle_size",
  3771. "default_value": 0.1,
  3772. "value": "extruderValue(support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr, 'support_z_distance') if support_type == 'everywhere' else 0",
  3773. "limit_to_extruder": "support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr",
  3774. "type": "float",
  3775. "enabled": "(support_enable or support_tree_enable) and resolveOrValue('support_type') == 'everywhere'",
  3776. "settable_per_mesh": true
  3777. }
  3778. }
  3779. },
  3780. "support_xy_distance":
  3781. {
  3782. "label": "Support X/Y Distance",
  3783. "description": "Distance of the support structure from the print in the X/Y directions.",
  3784. "unit": "mm",
  3785. "type": "float",
  3786. "minimum_value": "0",
  3787. "maximum_value_warning": "1.5 * machine_nozzle_tip_outer_diameter",
  3788. "default_value": 0.7,
  3789. "limit_to_extruder": "support_infill_extruder_nr",
  3790. "enabled": "support_enable or support_tree_enable",
  3791. "settable_per_mesh": true
  3792. },
  3793. "support_xy_overrides_z":
  3794. {
  3795. "label": "Support Distance Priority",
  3796. "description": "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs.",
  3797. "type": "enum",
  3798. "options":
  3799. {
  3800. "xy_overrides_z": "X/Y overrides Z",
  3801. "z_overrides_xy": "Z overrides X/Y"
  3802. },
  3803. "default_value": "z_overrides_xy",
  3804. "limit_to_extruder": "support_infill_extruder_nr",
  3805. "enabled": "support_enable",
  3806. "settable_per_mesh": true
  3807. },
  3808. "support_xy_distance_overhang":
  3809. {
  3810. "label": "Minimum Support X/Y Distance",
  3811. "description": "Distance of the support structure from the overhang in the X/Y directions. ",
  3812. "unit": "mm",
  3813. "type": "float",
  3814. "minimum_value": "0",
  3815. "maximum_value_warning": "support_xy_distance",
  3816. "default_value": 0.2,
  3817. "value": "machine_nozzle_size / 2",
  3818. "limit_to_extruder": "support_infill_extruder_nr",
  3819. "enabled": "support_enable and support_xy_overrides_z == 'z_overrides_xy'",
  3820. "settable_per_mesh": true
  3821. },
  3822. "support_bottom_stair_step_height":
  3823. {
  3824. "label": "Support Stair Step Height",
  3825. "description": "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour.",
  3826. "unit": "mm",
  3827. "type": "float",
  3828. "default_value": 0.3,
  3829. "limit_to_extruder": "support_bottom_extruder_nr if support_bottom_enable else support_infill_extruder_nr",
  3830. "minimum_value": "0",
  3831. "maximum_value_warning": "1.0",
  3832. "enabled": "support_enable",
  3833. "settable_per_mesh": true
  3834. },
  3835. "support_bottom_stair_step_width":
  3836. {
  3837. "label": "Support Stair Step Maximum Width",
  3838. "description": "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures.",
  3839. "unit": "mm",
  3840. "type": "float",
  3841. "default_value": 5.0,
  3842. "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr",
  3843. "minimum_value": "0",
  3844. "maximum_value_warning": "10.0",
  3845. "enabled": "support_enable",
  3846. "settable_per_mesh": true
  3847. },
  3848. "support_join_distance":
  3849. {
  3850. "label": "Support Join Distance",
  3851. "description": "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one.",
  3852. "unit": "mm",
  3853. "type": "float",
  3854. "default_value": 2.0,
  3855. "limit_to_extruder": "support_infill_extruder_nr",
  3856. "minimum_value_warning": "0",
  3857. "maximum_value_warning": "10",
  3858. "enabled": "support_enable",
  3859. "settable_per_mesh": true
  3860. },
  3861. "support_offset":
  3862. {
  3863. "label": "Support Horizontal Expansion",
  3864. "description": "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support.",
  3865. "unit": "mm",
  3866. "type": "float",
  3867. "default_value": 0.2,
  3868. "limit_to_extruder": "support_infill_extruder_nr",
  3869. "minimum_value_warning": "-1 * machine_nozzle_size",
  3870. "maximum_value_warning": "10 * machine_nozzle_size",
  3871. "enabled": "support_enable",
  3872. "settable_per_mesh": true
  3873. },
  3874. "support_infill_sparse_thickness":
  3875. {
  3876. "label": "Support Infill Layer Thickness",
  3877. "description": "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded.",
  3878. "unit": "mm",
  3879. "type": "float",
  3880. "default_value": 0.1,
  3881. "minimum_value": "resolveOrValue('layer_height')",
  3882. "maximum_value_warning": "0.75 * machine_nozzle_size",
  3883. "maximum_value": "resolveOrValue('layer_height') * 8",
  3884. "value": "resolveOrValue('layer_height')",
  3885. "enabled": "(support_enable or support_tree_enable) and support_infill_rate > 0",
  3886. "limit_to_extruder": "support_infill_extruder_nr",
  3887. "settable_per_mesh": false
  3888. },
  3889. "gradual_support_infill_steps":
  3890. {
  3891. "label": "Gradual Support Infill Steps",
  3892. "description": "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density.",
  3893. "default_value": 0,
  3894. "type": "int",
  3895. "minimum_value": "0",
  3896. "maximum_value_warning": "1 if (support_pattern == 'cross' or support_pattern == 'lines' or support_pattern == 'zigzag' or support_pattern == 'concentric' or support_pattern == 'concentric_3d') else 5",
  3897. "maximum_value": "999999 if support_line_distance == 0 else (20 - math.log(support_line_distance) / math.log(2))",
  3898. "enabled": "(support_enable or support_tree_enable) and support_infill_rate > 0",
  3899. "limit_to_extruder": "support_infill_extruder_nr",
  3900. "settable_per_mesh": false
  3901. },
  3902. "gradual_support_infill_step_height":
  3903. {
  3904. "label": "Gradual Support Infill Step Height",
  3905. "description": "The height of support infill of a given density before switching to half the density.",
  3906. "unit": "mm",
  3907. "type": "float",
  3908. "default_value": 1,
  3909. "minimum_value": "0.0001",
  3910. "minimum_value_warning": "3 * resolveOrValue('layer_height')",
  3911. "enabled": "(support_enable or support_tree_enable) and support_infill_rate > 0 and gradual_support_infill_steps > 0",
  3912. "limit_to_extruder": "support_infill_extruder_nr",
  3913. "settable_per_mesh": false
  3914. },
  3915. "support_interface_enable":
  3916. {
  3917. "label": "Enable Support Interface",
  3918. "description": "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model.",
  3919. "type": "bool",
  3920. "default_value": false,
  3921. "limit_to_extruder": "support_interface_extruder_nr",
  3922. "enabled": "support_enable or support_tree_enable",
  3923. "settable_per_mesh": true,
  3924. "children":
  3925. {
  3926. "support_roof_enable":
  3927. {
  3928. "label": "Enable Support Roof",
  3929. "description": "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support.",
  3930. "type": "bool",
  3931. "default_value": false,
  3932. "value": "extruderValue(support_roof_extruder_nr, 'support_interface_enable')",
  3933. "limit_to_extruder": "support_roof_extruder_nr",
  3934. "enabled": "support_enable or support_tree_enable",
  3935. "settable_per_mesh": true
  3936. },
  3937. "support_bottom_enable":
  3938. {
  3939. "label": "Enable Support Floor",
  3940. "description": "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support.",
  3941. "type": "bool",
  3942. "default_value": false,
  3943. "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_enable')",
  3944. "limit_to_extruder": "support_bottom_extruder_nr",
  3945. "enabled": "support_enable or support_tree_enable",
  3946. "settable_per_mesh": true
  3947. }
  3948. }
  3949. },
  3950. "support_interface_height":
  3951. {
  3952. "label": "Support Interface Thickness",
  3953. "description": "The thickness of the interface of the support where it touches with the model on the bottom or the top.",
  3954. "unit": "mm",
  3955. "type": "float",
  3956. "default_value": 1,
  3957. "minimum_value": "0",
  3958. "minimum_value_warning": "0.2 + layer_height",
  3959. "maximum_value_warning": "10",
  3960. "limit_to_extruder": "support_interface_extruder_nr",
  3961. "enabled": "support_interface_enable and (support_enable or support_tree_enable)",
  3962. "settable_per_mesh": true,
  3963. "children":
  3964. {
  3965. "support_roof_height":
  3966. {
  3967. "label": "Support Roof Thickness",
  3968. "description": "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests.",
  3969. "unit": "mm",
  3970. "type": "float",
  3971. "default_value": 1,
  3972. "minimum_value": "0",
  3973. "minimum_value_warning": "0.2 + layer_height",
  3974. "maximum_value_warning": "10",
  3975. "value": "extruderValue(support_roof_extruder_nr, 'support_interface_height')",
  3976. "limit_to_extruder": "support_roof_extruder_nr",
  3977. "enabled": "support_roof_enable and (support_enable or support_tree_enable)",
  3978. "settable_per_mesh": true
  3979. },
  3980. "support_bottom_height":
  3981. {
  3982. "label": "Support Floor Thickness",
  3983. "description": "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests.",
  3984. "unit": "mm",
  3985. "type": "float",
  3986. "default_value": 1,
  3987. "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_height')",
  3988. "minimum_value": "0",
  3989. "minimum_value_warning": "min(0.2 + layer_height, support_bottom_stair_step_height)",
  3990. "maximum_value_warning": "10",
  3991. "limit_to_extruder": "support_bottom_extruder_nr",
  3992. "enabled": "support_bottom_enable and (support_enable or support_tree_enable)",
  3993. "settable_per_mesh": true
  3994. }
  3995. }
  3996. },
  3997. "support_interface_skip_height": {
  3998. "label": "Support Interface Resolution",
  3999. "description": "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface.",
  4000. "unit": "mm",
  4001. "type": "float",
  4002. "default_value": 0.3,
  4003. "minimum_value": "0",
  4004. "maximum_value_warning": "support_interface_height",
  4005. "limit_to_extruder": "support_interface_extruder_nr",
  4006. "enabled": "support_interface_enable and support_enable",
  4007. "settable_per_mesh": true
  4008. },
  4009. "support_interface_density":
  4010. {
  4011. "label": "Support Interface Density",
  4012. "description": "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove.",
  4013. "unit": "%",
  4014. "type": "float",
  4015. "default_value": 100,
  4016. "minimum_value": "0",
  4017. "maximum_value_warning": "100",
  4018. "limit_to_extruder": "support_interface_extruder_nr",
  4019. "enabled": "support_interface_enable and (support_enable or support_tree_enable)",
  4020. "settable_per_mesh": false,
  4021. "settable_per_extruder": true,
  4022. "children":
  4023. {
  4024. "support_roof_density":
  4025. {
  4026. "label": "Support Roof Density",
  4027. "description": "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove.",
  4028. "unit": "%",
  4029. "type": "float",
  4030. "default_value": 100,
  4031. "minimum_value": "0",
  4032. "maximum_value": "100",
  4033. "limit_to_extruder": "support_roof_extruder_nr",
  4034. "enabled": "support_roof_enable and (support_enable or support_tree_enable)",
  4035. "value": "extruderValue(support_roof_extruder_nr, 'support_interface_density')",
  4036. "settable_per_mesh": false,
  4037. "settable_per_extruder": true,
  4038. "children":
  4039. {
  4040. "support_roof_line_distance":
  4041. {
  4042. "label": "Support Roof Line Distance",
  4043. "description": "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately.",
  4044. "unit": "mm",
  4045. "type": "float",
  4046. "default_value": 0.4,
  4047. "minimum_value": "0",
  4048. "minimum_value_warning": "support_roof_line_width - 0.0001",
  4049. "value": "0 if support_roof_density == 0 else (support_roof_line_width * 100) / support_roof_density * (2 if support_roof_pattern == 'grid' else (3 if support_roof_pattern == 'triangles' else 1))",
  4050. "limit_to_extruder": "support_roof_extruder_nr",
  4051. "enabled": "support_roof_enable and (support_enable or support_tree_enable)",
  4052. "settable_per_mesh": false,
  4053. "settable_per_extruder": true
  4054. }
  4055. }
  4056. },
  4057. "support_bottom_density":
  4058. {
  4059. "label": "Support Floor Density",
  4060. "description": "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model.",
  4061. "unit": "%",
  4062. "type": "float",
  4063. "default_value": 100,
  4064. "minimum_value": "0",
  4065. "maximum_value": "100",
  4066. "limit_to_extruder": "support_bottom_extruder_nr",
  4067. "enabled": "support_bottom_enable and (support_enable or support_tree_enable)",
  4068. "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_density')",
  4069. "settable_per_mesh": false,
  4070. "settable_per_extruder": true,
  4071. "children":
  4072. {
  4073. "support_bottom_line_distance":
  4074. {
  4075. "label": "Support Floor Line Distance",
  4076. "description": "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately.",
  4077. "unit": "mm",
  4078. "type": "float",
  4079. "default_value": 0.4,
  4080. "minimum_value": "0",
  4081. "minimum_value_warning": "support_bottom_line_width - 0.0001",
  4082. "value": "0 if support_bottom_density == 0 else (support_bottom_line_width * 100) / support_bottom_density * (2 if support_bottom_pattern == 'grid' else (3 if support_bottom_pattern == 'triangles' else 1))",
  4083. "limit_to_extruder": "support_bottom_extruder_nr",
  4084. "enabled": "support_bottom_enable and (support_enable or support_tree_enable)",
  4085. "settable_per_mesh": false,
  4086. "settable_per_extruder": true
  4087. }
  4088. }
  4089. }
  4090. }
  4091. },
  4092. "support_interface_pattern":
  4093. {
  4094. "label": "Support Interface Pattern",
  4095. "description": "The pattern with which the interface of the support with the model is printed.",
  4096. "type": "enum",
  4097. "options":
  4098. {
  4099. "lines": "Lines",
  4100. "grid": "Grid",
  4101. "triangles": "Triangles",
  4102. "concentric": "Concentric",
  4103. "concentric_3d": "Concentric 3D",
  4104. "zigzag": "Zig Zag"
  4105. },
  4106. "default_value": "concentric",
  4107. "limit_to_extruder": "support_interface_extruder_nr",
  4108. "enabled": "support_interface_enable and (support_enable or support_tree_enable)",
  4109. "settable_per_mesh": false,
  4110. "settable_per_extruder": true,
  4111. "children":
  4112. {
  4113. "support_roof_pattern":
  4114. {
  4115. "label": "Support Roof Pattern",
  4116. "description": "The pattern with which the roofs of the support are printed.",
  4117. "type": "enum",
  4118. "options":
  4119. {
  4120. "lines": "Lines",
  4121. "grid": "Grid",
  4122. "triangles": "Triangles",
  4123. "concentric": "Concentric",
  4124. "concentric_3d": "Concentric 3D",
  4125. "zigzag": "Zig Zag"
  4126. },
  4127. "default_value": "concentric",
  4128. "value": "extruderValue(support_roof_extruder_nr, 'support_interface_pattern')",
  4129. "limit_to_extruder": "support_roof_extruder_nr",
  4130. "enabled": "support_roof_enable and (support_enable or support_tree_enable)",
  4131. "settable_per_mesh": false,
  4132. "settable_per_extruder": true
  4133. },
  4134. "support_bottom_pattern":
  4135. {
  4136. "label": "Support Floor Pattern",
  4137. "description": "The pattern with which the floors of the support are printed.",
  4138. "type": "enum",
  4139. "options":
  4140. {
  4141. "lines": "Lines",
  4142. "grid": "Grid",
  4143. "triangles": "Triangles",
  4144. "concentric": "Concentric",
  4145. "concentric_3d": "Concentric 3D",
  4146. "zigzag": "Zig Zag"
  4147. },
  4148. "default_value": "concentric",
  4149. "value": "extruderValue(support_bottom_extruder_nr, 'support_interface_pattern')",
  4150. "limit_to_extruder": "support_bottom_extruder_nr",
  4151. "enabled": "support_bottom_enable and (support_enable or support_tree_enable)",
  4152. "settable_per_mesh": false,
  4153. "settable_per_extruder": true
  4154. }
  4155. }
  4156. },
  4157. "support_use_towers":
  4158. {
  4159. "label": "Use Towers",
  4160. "description": "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof.",
  4161. "type": "bool",
  4162. "default_value": true,
  4163. "limit_to_extruder": "support_infill_extruder_nr",
  4164. "enabled": "support_enable",
  4165. "settable_per_mesh": true
  4166. },
  4167. "support_tower_diameter":
  4168. {
  4169. "label": "Tower Diameter",
  4170. "description": "The diameter of a special tower.",
  4171. "unit": "mm",
  4172. "type": "float",
  4173. "default_value": 3.0,
  4174. "limit_to_extruder": "support_infill_extruder_nr",
  4175. "minimum_value": "0",
  4176. "minimum_value_warning": "2 * machine_nozzle_size",
  4177. "maximum_value_warning": "20",
  4178. "enabled": "support_enable and support_use_towers",
  4179. "settable_per_mesh": true
  4180. },
  4181. "support_minimal_diameter":
  4182. {
  4183. "label": "Minimum Diameter",
  4184. "description": "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower.",
  4185. "unit": "mm",
  4186. "type": "float",
  4187. "default_value": 3.0,
  4188. "limit_to_extruder": "support_infill_extruder_nr",
  4189. "minimum_value": "0",
  4190. "minimum_value_warning": "2 * machine_nozzle_size",
  4191. "maximum_value_warning": "20",
  4192. "maximum_value": "support_tower_diameter",
  4193. "enabled": "support_enable and support_use_towers",
  4194. "settable_per_mesh": true
  4195. },
  4196. "support_tower_roof_angle":
  4197. {
  4198. "label": "Tower Roof Angle",
  4199. "description": "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs.",
  4200. "unit": "°",
  4201. "type": "int",
  4202. "minimum_value": "0",
  4203. "maximum_value": "90",
  4204. "default_value": 65,
  4205. "limit_to_extruder": "support_infill_extruder_nr",
  4206. "enabled": "support_enable and support_use_towers",
  4207. "settable_per_mesh": true
  4208. },
  4209. "support_mesh_drop_down":
  4210. {
  4211. "label": "Drop Down Support Mesh",
  4212. "description": "Make support everywhere below the support mesh, so that there's no overhang in the support mesh.",
  4213. "type": "bool",
  4214. "default_value": true,
  4215. "enabled": "support_mesh",
  4216. "settable_per_mesh": true,
  4217. "settable_per_extruder": false,
  4218. "settable_per_meshgroup": false,
  4219. "settable_globally": false
  4220. }
  4221. }
  4222. },
  4223. "platform_adhesion":
  4224. {
  4225. "label": "Build Plate Adhesion",
  4226. "type": "category",
  4227. "icon": "category_adhesion",
  4228. "description": "Adhesion",
  4229. "children":
  4230. {
  4231. "prime_blob_enable":
  4232. {
  4233. "label": "Enable Prime Blob",
  4234. "description": "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time.",
  4235. "type": "bool",
  4236. "resolve": "any(extruderValues('prime_blob_enable'))",
  4237. "default_value": true,
  4238. "settable_per_mesh": false,
  4239. "settable_per_extruder": true,
  4240. "enabled": false
  4241. },
  4242. "extruder_prime_pos_x":
  4243. {
  4244. "label": "Extruder Prime X Position",
  4245. "description": "The X coordinate of the position where the nozzle primes at the start of printing.",
  4246. "type": "float",
  4247. "unit": "mm",
  4248. "default_value": 0,
  4249. "minimum_value_warning": "machine_width / -2 if machine_center_is_zero else 0",
  4250. "maximum_value_warning": "machine_width / 2 if machine_center_is_zero else machine_width",
  4251. "settable_per_mesh": false,
  4252. "settable_per_extruder": true,
  4253. "enabled": false
  4254. },
  4255. "extruder_prime_pos_y":
  4256. {
  4257. "label": "Extruder Prime Y Position",
  4258. "description": "The Y coordinate of the position where the nozzle primes at the start of printing.",
  4259. "type": "float",
  4260. "unit": "mm",
  4261. "default_value": 0,
  4262. "minimum_value_warning": "machine_depth / -2 if machine_center_is_zero else 0",
  4263. "maximum_value_warning": "machine_depth / 2 if machine_center_is_zero else machine_depth",
  4264. "settable_per_mesh": false,
  4265. "settable_per_extruder": true,
  4266. "enabled": false
  4267. },
  4268. "adhesion_type":
  4269. {
  4270. "label": "Build Plate Adhesion Type",
  4271. "description": "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model.",
  4272. "type": "enum",
  4273. "options":
  4274. {
  4275. "skirt": "Skirt",
  4276. "brim": "Brim",
  4277. "raft": "Raft",
  4278. "none": "None"
  4279. },
  4280. "default_value": "brim",
  4281. "resolve": "extruderValue(adhesion_extruder_nr, 'adhesion_type')",
  4282. "settable_per_mesh": false,
  4283. "settable_per_extruder": false
  4284. },
  4285. "adhesion_extruder_nr":
  4286. {
  4287. "label": "Build Plate Adhesion Extruder",
  4288. "description": "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion.",
  4289. "type": "extruder",
  4290. "default_value": "0",
  4291. "value": "-1",
  4292. "enabled": "extruders_enabled_count > 1 and resolveOrValue('adhesion_type') != 'none'",
  4293. "settable_per_mesh": false,
  4294. "settable_per_extruder": false
  4295. },
  4296. "skirt_line_count":
  4297. {
  4298. "label": "Skirt Line Count",
  4299. "description": "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt.",
  4300. "type": "int",
  4301. "default_value": 1,
  4302. "minimum_value": "0",
  4303. "maximum_value_warning": "10",
  4304. "enabled": "resolveOrValue('adhesion_type') == 'skirt'",
  4305. "settable_per_mesh": false,
  4306. "settable_per_extruder": true,
  4307. "limit_to_extruder": "adhesion_extruder_nr"
  4308. },
  4309. "skirt_gap":
  4310. {
  4311. "label": "Skirt Distance",
  4312. "description": "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance.",
  4313. "unit": "mm",
  4314. "type": "float",
  4315. "default_value": 3,
  4316. "minimum_value_warning": "max(extruderValues('machine_nozzle_size'))",
  4317. "maximum_value_warning": "10",
  4318. "enabled": "resolveOrValue('adhesion_type') == 'skirt'",
  4319. "settable_per_mesh": false,
  4320. "settable_per_extruder": true,
  4321. "limit_to_extruder": "adhesion_extruder_nr"
  4322. },
  4323. "skirt_brim_minimal_length":
  4324. {
  4325. "label": "Skirt/Brim Minimum Length",
  4326. "description": "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored.",
  4327. "unit": "mm",
  4328. "type": "float",
  4329. "default_value": 250,
  4330. "minimum_value": "0",
  4331. "minimum_value_warning": "25",
  4332. "maximum_value_warning": "2500",
  4333. "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim'",
  4334. "settable_per_mesh": false,
  4335. "settable_per_extruder": true
  4336. },
  4337. "brim_width":
  4338. {
  4339. "label": "Brim Width",
  4340. "description": "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area.",
  4341. "type": "float",
  4342. "unit": "mm",
  4343. "default_value": 8.0,
  4344. "minimum_value": "0.0",
  4345. "maximum_value_warning": "50.0",
  4346. "enabled": "resolveOrValue('adhesion_type') == 'brim'",
  4347. "settable_per_mesh": false,
  4348. "settable_per_extruder": true,
  4349. "limit_to_extruder": "adhesion_extruder_nr",
  4350. "children":
  4351. {
  4352. "brim_line_count":
  4353. {
  4354. "label": "Brim Line Count",
  4355. "description": "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area.",
  4356. "type": "int",
  4357. "default_value": 20,
  4358. "minimum_value": "0",
  4359. "maximum_value_warning": "50 / skirt_brim_line_width",
  4360. "value": "math.ceil(brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))",
  4361. "enabled": "resolveOrValue('adhesion_type') == 'brim'",
  4362. "settable_per_mesh": false,
  4363. "settable_per_extruder": true,
  4364. "limit_to_extruder": "adhesion_extruder_nr"
  4365. }
  4366. }
  4367. },
  4368. "brim_outside_only":
  4369. {
  4370. "label": "Brim Only on Outside",
  4371. "description": "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much.",
  4372. "type": "bool",
  4373. "default_value": true,
  4374. "enabled": "resolveOrValue('adhesion_type') == 'brim'",
  4375. "settable_per_mesh": false,
  4376. "settable_per_extruder": true,
  4377. "limit_to_extruder": "adhesion_extruder_nr"
  4378. },
  4379. "raft_margin":
  4380. {
  4381. "label": "Raft Extra Margin",
  4382. "description": "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.",
  4383. "unit": "mm",
  4384. "type": "float",
  4385. "default_value": 15,
  4386. "minimum_value_warning": "raft_interface_line_width",
  4387. "maximum_value_warning": "20",
  4388. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4389. "limit_to_extruder": "adhesion_extruder_nr",
  4390. "settable_per_mesh": false,
  4391. "settable_per_extruder": true
  4392. },
  4393. "raft_smoothing":
  4394. {
  4395. "label": "Raft Smoothing",
  4396. "description": "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.",
  4397. "unit": "mm",
  4398. "type": "float",
  4399. "default_value": 5,
  4400. "minimum_value": "0",
  4401. "minimum_value_warning": "raft_interface_line_width",
  4402. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4403. "limit_to_extruder": "adhesion_extruder_nr",
  4404. "settable_per_mesh": false,
  4405. "settable_per_extruder": true
  4406. },
  4407. "raft_airgap":
  4408. {
  4409. "label": "Raft Air Gap",
  4410. "description": "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft.",
  4411. "unit": "mm",
  4412. "type": "float",
  4413. "default_value": 0.3,
  4414. "minimum_value": "0",
  4415. "maximum_value_warning": "min(extruderValues('machine_nozzle_size'))",
  4416. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4417. "settable_per_mesh": false,
  4418. "settable_per_extruder": true,
  4419. "limit_to_extruder": "adhesion_extruder_nr"
  4420. },
  4421. "layer_0_z_overlap":
  4422. {
  4423. "label": "Initial Layer Z Overlap",
  4424. "description": "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.",
  4425. "unit": "mm",
  4426. "type": "float",
  4427. "default_value": 0.22,
  4428. "value": "raft_airgap / 2",
  4429. "minimum_value": "0",
  4430. "maximum_value_warning": "raft_airgap",
  4431. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4432. "settable_per_mesh": false,
  4433. "settable_per_extruder": true,
  4434. "limit_to_extruder": "adhesion_extruder_nr"
  4435. },
  4436. "raft_surface_layers":
  4437. {
  4438. "label": "Raft Top Layers",
  4439. "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1.",
  4440. "type": "int",
  4441. "default_value": 2,
  4442. "minimum_value": "0",
  4443. "maximum_value_warning": "20",
  4444. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4445. "settable_per_mesh": false,
  4446. "settable_per_extruder": true,
  4447. "limit_to_extruder": "adhesion_extruder_nr"
  4448. },
  4449. "raft_surface_thickness":
  4450. {
  4451. "label": "Raft Top Layer Thickness",
  4452. "description": "Layer thickness of the top raft layers.",
  4453. "unit": "mm",
  4454. "type": "float",
  4455. "default_value": 0.1,
  4456. "value": "resolveOrValue('layer_height')",
  4457. "minimum_value": "0.001",
  4458. "minimum_value_warning": "0.04",
  4459. "maximum_value_warning": "0.75 * machine_nozzle_size",
  4460. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4461. "settable_per_mesh": false,
  4462. "settable_per_extruder": true,
  4463. "limit_to_extruder": "adhesion_extruder_nr"
  4464. },
  4465. "raft_surface_line_width":
  4466. {
  4467. "label": "Raft Top Line Width",
  4468. "description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.",
  4469. "unit": "mm",
  4470. "type": "float",
  4471. "default_value": 0.4,
  4472. "value": "line_width",
  4473. "minimum_value": "0.001",
  4474. "minimum_value_warning": "machine_nozzle_size * 0.1",
  4475. "maximum_value_warning": "machine_nozzle_size * 2",
  4476. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4477. "settable_per_mesh": false,
  4478. "settable_per_extruder": true,
  4479. "limit_to_extruder": "adhesion_extruder_nr"
  4480. },
  4481. "raft_surface_line_spacing":
  4482. {
  4483. "label": "Raft Top Spacing",
  4484. "description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.",
  4485. "unit": "mm",
  4486. "type": "float",
  4487. "default_value": 0.4,
  4488. "minimum_value": "0",
  4489. "minimum_value_warning": "raft_surface_line_width",
  4490. "maximum_value_warning": "raft_surface_line_width * 3",
  4491. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4492. "value": "raft_surface_line_width",
  4493. "settable_per_mesh": false,
  4494. "settable_per_extruder": true,
  4495. "limit_to_extruder": "adhesion_extruder_nr"
  4496. },
  4497. "raft_interface_thickness":
  4498. {
  4499. "label": "Raft Middle Thickness",
  4500. "description": "Layer thickness of the middle raft layer.",
  4501. "unit": "mm",
  4502. "type": "float",
  4503. "default_value": 0.15,
  4504. "value": "resolveOrValue('layer_height') * 1.5",
  4505. "minimum_value": "0.001",
  4506. "minimum_value_warning": "0.04",
  4507. "maximum_value_warning": "0.75 * machine_nozzle_size",
  4508. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4509. "settable_per_mesh": false,
  4510. "settable_per_extruder": true,
  4511. "limit_to_extruder": "adhesion_extruder_nr"
  4512. },
  4513. "raft_interface_line_width":
  4514. {
  4515. "label": "Raft Middle Line Width",
  4516. "description": "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate.",
  4517. "unit": "mm",
  4518. "type": "float",
  4519. "default_value": 0.7,
  4520. "value": "line_width * 2",
  4521. "minimum_value": "0.001",
  4522. "minimum_value_warning": "machine_nozzle_size * 0.5",
  4523. "maximum_value_warning": "machine_nozzle_size * 3",
  4524. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4525. "settable_per_mesh": false,
  4526. "settable_per_extruder": true,
  4527. "limit_to_extruder": "adhesion_extruder_nr"
  4528. },
  4529. "raft_interface_line_spacing":
  4530. {
  4531. "label": "Raft Middle Spacing",
  4532. "description": "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers.",
  4533. "unit": "mm",
  4534. "type": "float",
  4535. "default_value": 0.9,
  4536. "value": "raft_interface_line_width + 0.2",
  4537. "minimum_value": "0",
  4538. "minimum_value_warning": "raft_interface_line_width",
  4539. "maximum_value_warning": "15.0",
  4540. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4541. "settable_per_mesh": false,
  4542. "settable_per_extruder": true,
  4543. "limit_to_extruder": "adhesion_extruder_nr"
  4544. },
  4545. "raft_base_thickness":
  4546. {
  4547. "label": "Raft Base Thickness",
  4548. "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate.",
  4549. "unit": "mm",
  4550. "type": "float",
  4551. "default_value": 0.3,
  4552. "value": "resolveOrValue('layer_height_0') * 1.2",
  4553. "minimum_value": "0.001",
  4554. "minimum_value_warning": "0.04",
  4555. "maximum_value_warning": "0.75 * raft_base_line_width",
  4556. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4557. "settable_per_mesh": false,
  4558. "settable_per_extruder": true,
  4559. "limit_to_extruder": "adhesion_extruder_nr"
  4560. },
  4561. "raft_base_line_width":
  4562. {
  4563. "label": "Raft Base Line Width",
  4564. "description": "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion.",
  4565. "unit": "mm",
  4566. "type": "float",
  4567. "default_value": 0.8,
  4568. "minimum_value": "0.001",
  4569. "value": "machine_nozzle_size * 2",
  4570. "minimum_value_warning": "machine_nozzle_size * 0.5",
  4571. "maximum_value_warning": "machine_nozzle_size * 3",
  4572. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4573. "settable_per_mesh": false,
  4574. "settable_per_extruder": true,
  4575. "limit_to_extruder": "adhesion_extruder_nr"
  4576. },
  4577. "raft_base_line_spacing":
  4578. {
  4579. "label": "Raft Line Spacing",
  4580. "description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.",
  4581. "unit": "mm",
  4582. "type": "float",
  4583. "default_value": 1.6,
  4584. "value": "raft_base_line_width * 2",
  4585. "minimum_value": "0",
  4586. "minimum_value_warning": "raft_base_line_width",
  4587. "maximum_value_warning": "100",
  4588. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4589. "settable_per_mesh": false,
  4590. "settable_per_extruder": true,
  4591. "limit_to_extruder": "adhesion_extruder_nr"
  4592. },
  4593. "raft_speed":
  4594. {
  4595. "label": "Raft Print Speed",
  4596. "description": "The speed at which the raft is printed.",
  4597. "unit": "mm/s",
  4598. "type": "float",
  4599. "default_value": 20,
  4600. "minimum_value": "0.1",
  4601. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  4602. "maximum_value_warning": "200",
  4603. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4604. "value": "speed_print / 60 * 30",
  4605. "settable_per_mesh": false,
  4606. "settable_per_extruder": true,
  4607. "limit_to_extruder": "adhesion_extruder_nr",
  4608. "children":
  4609. {
  4610. "raft_surface_speed":
  4611. {
  4612. "label": "Raft Top Print Speed",
  4613. "description": "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines.",
  4614. "unit": "mm/s",
  4615. "type": "float",
  4616. "default_value": 20,
  4617. "minimum_value": "0.1",
  4618. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  4619. "maximum_value_warning": "100",
  4620. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4621. "value": "raft_speed",
  4622. "settable_per_mesh": false,
  4623. "settable_per_extruder": true,
  4624. "limit_to_extruder": "adhesion_extruder_nr"
  4625. },
  4626. "raft_interface_speed":
  4627. {
  4628. "label": "Raft Middle Print Speed",
  4629. "description": "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.",
  4630. "unit": "mm/s",
  4631. "type": "float",
  4632. "default_value": 15,
  4633. "value": "raft_speed * 0.75",
  4634. "minimum_value": "0.1",
  4635. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  4636. "maximum_value_warning": "150",
  4637. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4638. "settable_per_mesh": false,
  4639. "settable_per_extruder": true,
  4640. "limit_to_extruder": "adhesion_extruder_nr"
  4641. },
  4642. "raft_base_speed":
  4643. {
  4644. "label": "Raft Base Print Speed",
  4645. "description": "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.",
  4646. "unit": "mm/s",
  4647. "type": "float",
  4648. "default_value": 15,
  4649. "minimum_value": "0.1",
  4650. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  4651. "maximum_value_warning": "200",
  4652. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4653. "value": "0.75 * raft_speed",
  4654. "settable_per_mesh": false,
  4655. "settable_per_extruder": true,
  4656. "limit_to_extruder": "adhesion_extruder_nr"
  4657. }
  4658. }
  4659. },
  4660. "raft_acceleration":
  4661. {
  4662. "label": "Raft Print Acceleration",
  4663. "description": "The acceleration with which the raft is printed.",
  4664. "unit": "mm/s²",
  4665. "type": "float",
  4666. "default_value": 3000,
  4667. "minimum_value": "0.1",
  4668. "minimum_value_warning": "100",
  4669. "maximum_value_warning": "10000",
  4670. "value": "acceleration_print",
  4671. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')",
  4672. "settable_per_mesh": false,
  4673. "limit_to_extruder": "adhesion_extruder_nr",
  4674. "children":
  4675. {
  4676. "raft_surface_acceleration":
  4677. {
  4678. "label": "Raft Top Print Acceleration",
  4679. "description": "The acceleration with which the top raft layers are printed.",
  4680. "unit": "mm/s²",
  4681. "type": "float",
  4682. "default_value": 3000,
  4683. "value": "raft_acceleration",
  4684. "minimum_value": "0.1",
  4685. "minimum_value_warning": "100",
  4686. "maximum_value_warning": "10000",
  4687. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')",
  4688. "settable_per_mesh": false,
  4689. "limit_to_extruder": "adhesion_extruder_nr"
  4690. },
  4691. "raft_interface_acceleration":
  4692. {
  4693. "label": "Raft Middle Print Acceleration",
  4694. "description": "The acceleration with which the middle raft layer is printed.",
  4695. "unit": "mm/s²",
  4696. "type": "float",
  4697. "default_value": 3000,
  4698. "value": "raft_acceleration",
  4699. "minimum_value": "0.1",
  4700. "minimum_value_warning": "100",
  4701. "maximum_value_warning": "10000",
  4702. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')",
  4703. "settable_per_mesh": false,
  4704. "limit_to_extruder": "adhesion_extruder_nr"
  4705. },
  4706. "raft_base_acceleration":
  4707. {
  4708. "label": "Raft Base Print Acceleration",
  4709. "description": "The acceleration with which the base raft layer is printed.",
  4710. "unit": "mm/s²",
  4711. "type": "float",
  4712. "default_value": 3000,
  4713. "value": "raft_acceleration",
  4714. "minimum_value": "0.1",
  4715. "minimum_value_warning": "100",
  4716. "maximum_value_warning": "10000",
  4717. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')",
  4718. "settable_per_mesh": false,
  4719. "limit_to_extruder": "adhesion_extruder_nr"
  4720. }
  4721. }
  4722. },
  4723. "raft_jerk":
  4724. {
  4725. "label": "Raft Print Jerk",
  4726. "description": "The jerk with which the raft is printed.",
  4727. "unit": "mm/s",
  4728. "type": "float",
  4729. "default_value": 20,
  4730. "minimum_value": "0",
  4731. "minimum_value_warning": "5",
  4732. "maximum_value_warning": "50",
  4733. "value": "jerk_print",
  4734. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')",
  4735. "settable_per_mesh": false,
  4736. "limit_to_extruder": "adhesion_extruder_nr",
  4737. "children":
  4738. {
  4739. "raft_surface_jerk":
  4740. {
  4741. "label": "Raft Top Print Jerk",
  4742. "description": "The jerk with which the top raft layers are printed.",
  4743. "unit": "mm/s",
  4744. "type": "float",
  4745. "default_value": 20,
  4746. "value": "raft_jerk",
  4747. "minimum_value": "0",
  4748. "minimum_value_warning": "5",
  4749. "maximum_value_warning": "100",
  4750. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')",
  4751. "settable_per_mesh": false,
  4752. "limit_to_extruder": "adhesion_extruder_nr"
  4753. },
  4754. "raft_interface_jerk":
  4755. {
  4756. "label": "Raft Middle Print Jerk",
  4757. "description": "The jerk with which the middle raft layer is printed.",
  4758. "unit": "mm/s",
  4759. "type": "float",
  4760. "default_value": 20,
  4761. "value": "raft_jerk",
  4762. "minimum_value": "0",
  4763. "minimum_value_warning": "5",
  4764. "maximum_value_warning": "50",
  4765. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')",
  4766. "settable_per_mesh": false,
  4767. "limit_to_extruder": "adhesion_extruder_nr"
  4768. },
  4769. "raft_base_jerk":
  4770. {
  4771. "label": "Raft Base Print Jerk",
  4772. "description": "The jerk with which the base raft layer is printed.",
  4773. "unit": "mm/s",
  4774. "type": "float",
  4775. "default_value": 20,
  4776. "value": "raft_jerk",
  4777. "minimum_value": "0",
  4778. "minimum_value_warning": "5",
  4779. "maximum_value_warning": "50",
  4780. "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')",
  4781. "settable_per_mesh": false,
  4782. "limit_to_extruder": "adhesion_extruder_nr"
  4783. }
  4784. }
  4785. },
  4786. "raft_fan_speed":
  4787. {
  4788. "label": "Raft Fan Speed",
  4789. "description": "The fan speed for the raft.",
  4790. "unit": "%",
  4791. "type": "float",
  4792. "minimum_value": "0",
  4793. "maximum_value": "100",
  4794. "default_value": 0,
  4795. "settable_per_mesh": false,
  4796. "settable_per_extruder": true,
  4797. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4798. "limit_to_extruder": "adhesion_extruder_nr",
  4799. "children":
  4800. {
  4801. "raft_surface_fan_speed":
  4802. {
  4803. "label": "Raft Top Fan Speed",
  4804. "description": "The fan speed for the top raft layers.",
  4805. "unit": "%",
  4806. "type": "float",
  4807. "minimum_value": "0",
  4808. "maximum_value": "100",
  4809. "default_value": 0,
  4810. "value": "raft_fan_speed",
  4811. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4812. "settable_per_mesh": false,
  4813. "settable_per_extruder": true,
  4814. "limit_to_extruder": "adhesion_extruder_nr"
  4815. },
  4816. "raft_interface_fan_speed":
  4817. {
  4818. "label": "Raft Middle Fan Speed",
  4819. "description": "The fan speed for the middle raft layer.",
  4820. "unit": "%",
  4821. "type": "float",
  4822. "minimum_value": "0",
  4823. "maximum_value": "100",
  4824. "default_value": 0,
  4825. "value": "raft_fan_speed",
  4826. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4827. "settable_per_mesh": false,
  4828. "settable_per_extruder": true,
  4829. "limit_to_extruder": "adhesion_extruder_nr"
  4830. },
  4831. "raft_base_fan_speed":
  4832. {
  4833. "label": "Raft Base Fan Speed",
  4834. "description": "The fan speed for the base raft layer.",
  4835. "unit": "%",
  4836. "type": "float",
  4837. "minimum_value": "0",
  4838. "maximum_value": "100",
  4839. "default_value": 0,
  4840. "value": "raft_fan_speed",
  4841. "enabled": "resolveOrValue('adhesion_type') == 'raft'",
  4842. "settable_per_mesh": false,
  4843. "settable_per_extruder": true,
  4844. "limit_to_extruder": "adhesion_extruder_nr"
  4845. }
  4846. }
  4847. }
  4848. }
  4849. },
  4850. "dual":
  4851. {
  4852. "label": "Dual Extrusion",
  4853. "type": "category",
  4854. "icon": "category_dual",
  4855. "description": "Settings used for printing with multiple extruders.",
  4856. "children":
  4857. {
  4858. "prime_tower_enable":
  4859. {
  4860. "label": "Enable Prime Tower",
  4861. "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.",
  4862. "type": "bool",
  4863. "enabled": "extruders_enabled_count > 1",
  4864. "default_value": false,
  4865. "resolve": "any(extruderValues('prime_tower_enable'))",
  4866. "settable_per_mesh": false,
  4867. "settable_per_extruder": false
  4868. },
  4869. "prime_tower_circular":
  4870. {
  4871. "label": "Circular Prime Tower",
  4872. "description": "Make the prime tower as a circular shape.",
  4873. "type": "bool",
  4874. "enabled": "resolveOrValue('prime_tower_enable')",
  4875. "default_value": true,
  4876. "resolve": "any(extruderValues('prime_tower_circular'))",
  4877. "settable_per_mesh": false,
  4878. "settable_per_extruder": false
  4879. },
  4880. "prime_tower_size":
  4881. {
  4882. "label": "Prime Tower Size",
  4883. "description": "The width of the prime tower.",
  4884. "type": "float",
  4885. "unit": "mm",
  4886. "enabled": "resolveOrValue('prime_tower_enable')",
  4887. "default_value": 20,
  4888. "resolve": "max(extruderValues('prime_tower_size'))",
  4889. "minimum_value": "0",
  4890. "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)",
  4891. "minimum_value_warning": "max(extruderValues('prime_tower_line_width')) * 2",
  4892. "maximum_value_warning": "20",
  4893. "settable_per_mesh": false,
  4894. "settable_per_extruder": false
  4895. },
  4896. "prime_tower_min_volume":
  4897. {
  4898. "label": "Prime Tower Minimum Volume",
  4899. "description": "The minimum volume for each layer of the prime tower in order to purge enough material.",
  4900. "unit": "mm³",
  4901. "type": "float",
  4902. "default_value": 10,
  4903. "value": "8.48 if prime_tower_circular else 10",
  4904. "minimum_value": "0",
  4905. "maximum_value_warning": "round((resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height'), 2) if prime_tower_circular else resolveOrValue('prime_tower_size') ** 2 * resolveOrValue('layer_height')",
  4906. "enabled": "resolveOrValue('prime_tower_enable')",
  4907. "settable_per_mesh": false,
  4908. "settable_per_extruder": true,
  4909. "children":
  4910. {
  4911. "prime_tower_wall_thickness":
  4912. {
  4913. "label": "Prime Tower Thickness",
  4914. "description": "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower.",
  4915. "unit": "mm",
  4916. "type": "float",
  4917. "default_value": 2,
  4918. "value": "round(max(2 * prime_tower_line_width, (0.5 * (prime_tower_size - math.sqrt(max(0, prime_tower_size ** 2 - 4 * prime_tower_min_volume / (3.14159 * layer_height))))) if prime_tower_circular else (0.5 * (prime_tower_size - math.sqrt(max(0, prime_tower_size ** 2 - prime_tower_min_volume / layer_height))))), 3)",
  4919. "resolve": "max(extruderValues('prime_tower_wall_thickness'))",
  4920. "minimum_value": "0.001",
  4921. "minimum_value_warning": "2 * min(extruderValues('prime_tower_line_width')) - 0.0001",
  4922. "maximum_value_warning": "prime_tower_size / 2",
  4923. "enabled": "prime_tower_enable",
  4924. "settable_per_mesh": false,
  4925. "settable_per_extruder": false
  4926. }
  4927. }
  4928. },
  4929. "prime_tower_position_x":
  4930. {
  4931. "label": "Prime Tower X Position",
  4932. "description": "The x coordinate of the position of the prime tower.",
  4933. "type": "float",
  4934. "unit": "mm",
  4935. "enabled": "resolveOrValue('prime_tower_enable')",
  4936. "default_value": 200,
  4937. "value": "machine_width - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - 1",
  4938. "maximum_value": "machine_width / 2 if machine_center_is_zero else machine_width",
  4939. "minimum_value": "resolveOrValue('prime_tower_size') - machine_width / 2 if machine_center_is_zero else resolveOrValue('prime_tower_size')",
  4940. "settable_per_mesh": false,
  4941. "settable_per_extruder": false
  4942. },
  4943. "prime_tower_position_y":
  4944. {
  4945. "label": "Prime Tower Y Position",
  4946. "description": "The y coordinate of the position of the prime tower.",
  4947. "type": "float",
  4948. "unit": "mm",
  4949. "enabled": "resolveOrValue('prime_tower_enable')",
  4950. "default_value": 200,
  4951. "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - 1",
  4952. "maximum_value": "machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')",
  4953. "minimum_value": "machine_depth / -2 if machine_center_is_zero else 0",
  4954. "settable_per_mesh": false,
  4955. "settable_per_extruder": false
  4956. },
  4957. "prime_tower_flow":
  4958. {
  4959. "label": "Prime Tower Flow",
  4960. "description": "Flow compensation: the amount of material extruded is multiplied by this value.",
  4961. "type": "float",
  4962. "unit": "%",
  4963. "enabled": "resolveOrValue('prime_tower_enable')",
  4964. "default_value": 100,
  4965. "value": "material_flow",
  4966. "minimum_value": "0.0001",
  4967. "minimum_value_warning": "50",
  4968. "maximum_value_warning": "150",
  4969. "settable_per_mesh": false,
  4970. "settable_per_extruder": true
  4971. },
  4972. "prime_tower_wipe_enabled":
  4973. {
  4974. "label": "Wipe Inactive Nozzle on Prime Tower",
  4975. "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.",
  4976. "type": "bool",
  4977. "enabled": "resolveOrValue('prime_tower_enable')",
  4978. "default_value": true,
  4979. "settable_per_mesh": false,
  4980. "settable_per_extruder": true
  4981. },
  4982. "dual_pre_wipe":
  4983. {
  4984. "label": "Wipe Nozzle After Switch",
  4985. "description": "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print.",
  4986. "type": "bool",
  4987. "enabled": "resolveOrValue('prime_tower_enable')",
  4988. "default_value": true,
  4989. "settable_per_mesh": false,
  4990. "settable_per_extruder": true
  4991. },
  4992. "prime_tower_purge_volume":
  4993. {
  4994. "label": "Prime Tower Purge Volume",
  4995. "description": "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle.",
  4996. "type": "float",
  4997. "enabled": "resolveOrValue('prime_tower_enable') and dual_pre_wipe",
  4998. "unit": "mm³",
  4999. "default_value": 0,
  5000. "minimum_value": "0",
  5001. "maximum_value_warning": "2.5",
  5002. "settable_per_mesh": false,
  5003. "settable_per_extruder": true
  5004. },
  5005. "ooze_shield_enabled":
  5006. {
  5007. "label": "Enable Ooze Shield",
  5008. "description": "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle.",
  5009. "type": "bool",
  5010. "resolve": "any(extruderValues('ooze_shield_enabled'))",
  5011. "enabled": "extruders_enabled_count > 1",
  5012. "default_value": false,
  5013. "settable_per_mesh": false,
  5014. "settable_per_extruder": false
  5015. },
  5016. "ooze_shield_angle":
  5017. {
  5018. "label": "Ooze Shield Angle",
  5019. "description": "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material.",
  5020. "type": "float",
  5021. "unit": "°",
  5022. "enabled": "resolveOrValue('ooze_shield_enabled')",
  5023. "default_value": 60,
  5024. "resolve": "min(extruderValues('ooze_shield_angle'))",
  5025. "minimum_value": "0",
  5026. "maximum_value": "90",
  5027. "settable_per_mesh": false,
  5028. "settable_per_extruder": false
  5029. },
  5030. "ooze_shield_dist":
  5031. {
  5032. "label": "Ooze Shield Distance",
  5033. "description": "Distance of the ooze shield from the print, in the X/Y directions.",
  5034. "type": "float",
  5035. "unit": "mm",
  5036. "enabled": "resolveOrValue('ooze_shield_enabled')",
  5037. "default_value": 2,
  5038. "resolve": "max(extruderValues('ooze_shield_dist'))",
  5039. "minimum_value": "0",
  5040. "maximum_value_warning": "20",
  5041. "settable_per_mesh": false,
  5042. "settable_per_extruder": false
  5043. }
  5044. }
  5045. },
  5046. "meshfix":
  5047. {
  5048. "label": "Mesh Fixes",
  5049. "type": "category",
  5050. "icon": "category_fixes",
  5051. "description": "category_fixes",
  5052. "children":
  5053. {
  5054. "meshfix_union_all":
  5055. {
  5056. "label": "Union Overlapping Volumes",
  5057. "description": "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear.",
  5058. "type": "bool",
  5059. "default_value": true,
  5060. "settable_per_mesh": true
  5061. },
  5062. "meshfix_union_all_remove_holes":
  5063. {
  5064. "label": "Remove All Holes",
  5065. "description": "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below.",
  5066. "type": "bool",
  5067. "default_value": false,
  5068. "settable_per_mesh": true
  5069. },
  5070. "meshfix_extensive_stitching":
  5071. {
  5072. "label": "Extensive Stitching",
  5073. "description": "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time.",
  5074. "type": "bool",
  5075. "default_value": false,
  5076. "settable_per_mesh": true
  5077. },
  5078. "meshfix_keep_open_polygons":
  5079. {
  5080. "label": "Keep Disconnected Faces",
  5081. "description": "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code.",
  5082. "type": "bool",
  5083. "default_value": false,
  5084. "settable_per_mesh": true
  5085. },
  5086. "multiple_mesh_overlap":
  5087. {
  5088. "label": "Merged Meshes Overlap",
  5089. "description": "Make meshes which are touching each other overlap a bit. This makes them bond together better.",
  5090. "type": "float",
  5091. "unit": "mm",
  5092. "default_value": 0.15,
  5093. "minimum_value": "0",
  5094. "maximum_value_warning": "1.0",
  5095. "limit_to_extruder": "wall_0_extruder_nr",
  5096. "settable_per_mesh": true
  5097. },
  5098. "carve_multiple_volumes":
  5099. {
  5100. "label": "Remove Mesh Intersection",
  5101. "description": "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other.",
  5102. "type": "bool",
  5103. "default_value": true,
  5104. "value": "extruders_enabled_count > 1",
  5105. "settable_per_mesh": false,
  5106. "settable_per_extruder": false,
  5107. "settable_per_meshgroup": true
  5108. },
  5109. "alternate_carve_order":
  5110. {
  5111. "label": "Alternate Mesh Removal",
  5112. "description": "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes.",
  5113. "type": "bool",
  5114. "default_value": true,
  5115. "enabled": "carve_multiple_volumes",
  5116. "settable_per_mesh": false,
  5117. "settable_per_extruder": false,
  5118. "settable_per_meshgroup": true
  5119. },
  5120. "remove_empty_first_layers":
  5121. {
  5122. "label": "Remove Empty First Layers",
  5123. "description": "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle.",
  5124. "type": "bool",
  5125. "default_value": true,
  5126. "enabled": "not support_enable",
  5127. "settable_per_mesh": false,
  5128. "settable_per_extruder": false
  5129. }
  5130. }
  5131. },
  5132. "blackmagic":
  5133. {
  5134. "label": "Special Modes",
  5135. "type": "category",
  5136. "icon": "category_blackmagic",
  5137. "description": "category_blackmagic",
  5138. "children":
  5139. {
  5140. "print_sequence":
  5141. {
  5142. "label": "Print Sequence",
  5143. "description": "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes.",
  5144. "type": "enum",
  5145. "options":
  5146. {
  5147. "all_at_once": "All at Once",
  5148. "one_at_a_time": "One at a Time"
  5149. },
  5150. "default_value": "all_at_once",
  5151. "enabled": "extruders_enabled_count == 1",
  5152. "settable_per_mesh": false,
  5153. "settable_per_extruder": false,
  5154. "settable_per_meshgroup": false
  5155. },
  5156. "infill_mesh":
  5157. {
  5158. "label": "Infill Mesh",
  5159. "description": "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh.",
  5160. "type": "bool",
  5161. "default_value": false,
  5162. "settable_per_mesh": true,
  5163. "settable_per_extruder": false,
  5164. "settable_per_meshgroup": false,
  5165. "settable_globally": false
  5166. },
  5167. "infill_mesh_order":
  5168. {
  5169. "label": "Infill Mesh Order",
  5170. "description": "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes.",
  5171. "default_value": 0,
  5172. "value": "1 if infill_mesh else 0",
  5173. "minimum_value_warning": "1",
  5174. "maximum_value_warning": "50",
  5175. "type": "int",
  5176. "settable_per_mesh": true,
  5177. "settable_per_extruder": false,
  5178. "settable_per_meshgroup": false,
  5179. "settable_globally": false
  5180. },
  5181. "cutting_mesh":
  5182. {
  5183. "label": "Cutting Mesh",
  5184. "description": "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder.",
  5185. "type": "bool",
  5186. "default_value": false,
  5187. "settable_per_mesh": true,
  5188. "settable_per_extruder": false,
  5189. "settable_per_meshgroup": false,
  5190. "settable_globally": false
  5191. },
  5192. "mold_enabled":
  5193. {
  5194. "label": "Mold",
  5195. "description": "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate.",
  5196. "type": "bool",
  5197. "default_value": false,
  5198. "settable_per_mesh": true
  5199. },
  5200. "mold_width":
  5201. {
  5202. "label": "Minimal Mold Width",
  5203. "description": "The minimal distance between the ouside of the mold and the outside of the model.",
  5204. "unit": "mm",
  5205. "type": "float",
  5206. "minimum_value_warning": "wall_line_width_0 * 2",
  5207. "maximum_value_warning": "100",
  5208. "default_value": 5,
  5209. "settable_per_mesh": true,
  5210. "enabled": "mold_enabled"
  5211. },
  5212. "mold_roof_height":
  5213. {
  5214. "label": "Mold Roof Height",
  5215. "description": "The height above horizontal parts in your model which to print mold.",
  5216. "unit": "mm",
  5217. "type": "float",
  5218. "minimum_value": "0",
  5219. "maximum_value_warning": "5",
  5220. "default_value": 0.5,
  5221. "settable_per_mesh": true,
  5222. "enabled": "mold_enabled"
  5223. },
  5224. "mold_angle":
  5225. {
  5226. "label": "Mold Angle",
  5227. "description": "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model.",
  5228. "unit": "°",
  5229. "type": "float",
  5230. "minimum_value": "-89",
  5231. "minimum_value_warning": "0",
  5232. "maximum_value_warning": "support_angle",
  5233. "maximum_value": "90",
  5234. "default_value": 40,
  5235. "settable_per_mesh": true,
  5236. "enabled": "mold_enabled"
  5237. },
  5238. "support_mesh":
  5239. {
  5240. "label": "Support Mesh",
  5241. "description": "Use this mesh to specify support areas. This can be used to generate support structure.",
  5242. "type": "bool",
  5243. "default_value": false,
  5244. "settable_per_mesh": true,
  5245. "settable_per_extruder": false,
  5246. "settable_per_meshgroup": false,
  5247. "settable_globally": false
  5248. },
  5249. "anti_overhang_mesh":
  5250. {
  5251. "label": "Anti Overhang Mesh",
  5252. "description": "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure.",
  5253. "type": "bool",
  5254. "default_value": false,
  5255. "settable_per_mesh": true,
  5256. "settable_per_extruder": false,
  5257. "settable_per_meshgroup": false,
  5258. "settable_globally": false
  5259. },
  5260. "magic_mesh_surface_mode":
  5261. {
  5262. "label": "Surface Mode",
  5263. "description": "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces.",
  5264. "type": "enum",
  5265. "options":
  5266. {
  5267. "normal": "Normal",
  5268. "surface": "Surface",
  5269. "both": "Both"
  5270. },
  5271. "default_value": "normal",
  5272. "settable_per_mesh": true
  5273. },
  5274. "magic_spiralize":
  5275. {
  5276. "label": "Spiralize Outer Contour",
  5277. "description": "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part.",
  5278. "type": "bool",
  5279. "default_value": false,
  5280. "settable_per_mesh": false,
  5281. "settable_per_extruder": false
  5282. },
  5283. "smooth_spiralized_contours":
  5284. {
  5285. "label": "Smooth Spiralized Contours",
  5286. "description": "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details.",
  5287. "type": "bool",
  5288. "default_value": true,
  5289. "enabled": "magic_spiralize",
  5290. "settable_per_mesh": false,
  5291. "settable_per_extruder": false
  5292. },
  5293. "relative_extrusion":
  5294. {
  5295. "label": "Relative Extrusion",
  5296. "description": "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output.",
  5297. "type": "bool",
  5298. "default_value": false,
  5299. "value": "machine_gcode_flavor==\"RepRap (RepRap)\"",
  5300. "enabled": true,
  5301. "settable_per_mesh": false,
  5302. "settable_per_extruder": false
  5303. }
  5304. }
  5305. },
  5306. "experimental":
  5307. {
  5308. "label": "Experimental",
  5309. "type": "category",
  5310. "icon": "category_experimental",
  5311. "description": "experimental!",
  5312. "children":
  5313. {
  5314. "support_tree_enable":
  5315. {
  5316. "label": "Tree Support",
  5317. "description": "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time.",
  5318. "type": "bool",
  5319. "default_value": false,
  5320. "settable_per_mesh": true,
  5321. "settable_per_extruder": false
  5322. },
  5323. "support_tree_angle":
  5324. {
  5325. "label": "Tree Support Branch Angle",
  5326. "description": "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach.",
  5327. "unit": "°",
  5328. "type": "float",
  5329. "minimum_value": "0",
  5330. "maximum_value": "90",
  5331. "maximum_value_warning": "60",
  5332. "default_value": 40,
  5333. "limit_to_extruder": "support_infill_extruder_nr",
  5334. "enabled": "support_tree_enable",
  5335. "settable_per_mesh": false,
  5336. "settable_per_extruder": true
  5337. },
  5338. "support_tree_branch_distance":
  5339. {
  5340. "label": "Tree Support Branch Distance",
  5341. "description": "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove.",
  5342. "unit": "mm",
  5343. "type": "float",
  5344. "minimum_value": "0.001",
  5345. "default_value": 4,
  5346. "limit_to_extruder": "support_infill_extruder_nr",
  5347. "enabled": "support_tree_enable",
  5348. "settable_per_mesh": true
  5349. },
  5350. "support_tree_branch_diameter":
  5351. {
  5352. "label": "Tree Support Branch Diameter",
  5353. "description": "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this.",
  5354. "unit": "mm",
  5355. "type": "float",
  5356. "minimum_value": "0.001",
  5357. "minimum_value_warning": "support_line_width * 2",
  5358. "default_value": 2,
  5359. "limit_to_extruder": "support_infill_extruder_nr",
  5360. "enabled": "support_tree_enable",
  5361. "settable_per_mesh": false,
  5362. "settable_per_extruder": true
  5363. },
  5364. "support_tree_branch_diameter_angle":
  5365. {
  5366. "label": "Tree Support Branch Diameter Angle",
  5367. "description": "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support.",
  5368. "unit": "°",
  5369. "type": "float",
  5370. "minimum_value": "0",
  5371. "maximum_value": "89.9999",
  5372. "maximum_value_warning": "15",
  5373. "default_value": 5,
  5374. "limit_to_extruder": "support_infill_extruder_nr",
  5375. "enabled": "support_tree_enable",
  5376. "settable_per_mesh": false,
  5377. "settable_per_extruder": true
  5378. },
  5379. "support_tree_collision_resolution":
  5380. {
  5381. "label": "Tree Support Collision Resolution",
  5382. "description": "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically.",
  5383. "unit": "mm",
  5384. "type": "float",
  5385. "minimum_value": "0.001",
  5386. "minimum_value_warning": "support_line_width / 4",
  5387. "maximum_value_warning": "support_line_width * 2",
  5388. "default_value": 0.4,
  5389. "value": "support_line_width / 2",
  5390. "limit_to_extruder": "support_infill_extruder_nr",
  5391. "enabled": "support_tree_enable and support_tree_branch_diameter_angle > 0",
  5392. "settable_per_mesh": false,
  5393. "settable_per_extruder": true
  5394. },
  5395. "support_tree_wall_thickness":
  5396. {
  5397. "label": "Tree Support Wall Thickness",
  5398. "description": "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily.",
  5399. "unit": "mm",
  5400. "type": "float",
  5401. "minimum_value": "0",
  5402. "minimum_value_warning": "wall_line_width",
  5403. "default_value": 0.8,
  5404. "value": "support_line_width",
  5405. "limit_to_extruder": "support_infill_extruder_nr",
  5406. "enabled": "support_tree_enable",
  5407. "settable_per_mesh": false,
  5408. "settable_per_extruder": true,
  5409. "children":
  5410. {
  5411. "support_tree_wall_count":
  5412. {
  5413. "label": "Tree Support Wall Line Count",
  5414. "description": "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily.",
  5415. "type": "int",
  5416. "minimum_value": "0",
  5417. "minimum_value_warning": "1",
  5418. "default_value": 1,
  5419. "value": "round(support_tree_wall_thickness / support_line_width)",
  5420. "limit_to_extruder": "support_infill_extruder_nr",
  5421. "enabled": "support_tree_enable",
  5422. "settable_per_mesh": false,
  5423. "settable_per_extruder": true
  5424. }
  5425. }
  5426. },
  5427. "slicing_tolerance":
  5428. {
  5429. "label": "Slicing Tolerance",
  5430. "description": "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process.",
  5431. "type": "enum",
  5432. "options":
  5433. {
  5434. "middle": "Middle",
  5435. "exclusive": "Exclusive",
  5436. "inclusive": "Inclusive"
  5437. },
  5438. "default_value": "middle",
  5439. "settable_per_mesh": true
  5440. },
  5441. "roofing_line_width":
  5442. {
  5443. "label": "Top Surface Skin Line Width",
  5444. "description": "Width of a single line of the areas at the top of the print.",
  5445. "unit": "mm",
  5446. "minimum_value": "0.001",
  5447. "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size",
  5448. "maximum_value_warning": "2 * machine_nozzle_size",
  5449. "default_value": 0.4,
  5450. "type": "float",
  5451. "value": "skin_line_width",
  5452. "limit_to_extruder": "roofing_extruder_nr",
  5453. "settable_per_mesh": true,
  5454. "enabled": "roofing_layer_count > 0 and top_layers > 0"
  5455. },
  5456. "roofing_pattern":
  5457. {
  5458. "label": "Top Surface Skin Pattern",
  5459. "description": "The pattern of the top most layers.",
  5460. "type": "enum",
  5461. "options":
  5462. {
  5463. "lines": "Lines",
  5464. "concentric": "Concentric",
  5465. "zigzag": "Zig Zag"
  5466. },
  5467. "default_value": "lines",
  5468. "value": "top_bottom_pattern",
  5469. "limit_to_extruder": "roofing_extruder_nr",
  5470. "settable_per_mesh": true,
  5471. "enabled": "roofing_layer_count > 0 and top_layers > 0"
  5472. },
  5473. "roofing_angles":
  5474. {
  5475. "label": "Top Surface Skin Line Directions",
  5476. "description": "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees).",
  5477. "type": "[int]",
  5478. "default_value": "[ ]",
  5479. "value": "skin_angles",
  5480. "enabled": "roofing_pattern != 'concentric' and roofing_layer_count > 0 and top_layers > 0",
  5481. "limit_to_extruder": "roofing_extruder_nr",
  5482. "settable_per_mesh": true
  5483. },
  5484. "infill_enable_travel_optimization":
  5485. {
  5486. "label": "Infill Travel Optimization",
  5487. "description": "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased.",
  5488. "type": "bool",
  5489. "default_value": false,
  5490. "settable_per_mesh": true
  5491. },
  5492. "material_flow_dependent_temperature":
  5493. {
  5494. "label": "Auto Temperature",
  5495. "description": "Change the temperature for each layer automatically with the average flow speed of that layer.",
  5496. "type": "bool",
  5497. "default_value": false,
  5498. "enabled": "machine_nozzle_temp_enabled and False",
  5499. "settable_per_mesh": false,
  5500. "settable_per_extruder": true
  5501. },
  5502. "material_flow_temp_graph":
  5503. {
  5504. "label": "Flow Temperature Graph",
  5505. "description": "Data linking material flow (in mm3 per second) to temperature (degrees Celsius).",
  5506. "unit": "[[mm³,°C]]",
  5507. "type": "str",
  5508. "default_value": "[[3.5,200],[7.0,240]]",
  5509. "enabled": "False and machine_nozzle_temp_enabled and material_flow_dependent_temperature",
  5510. "settable_per_mesh": false,
  5511. "settable_per_extruder": true
  5512. },
  5513. "meshfix_maximum_resolution":
  5514. {
  5515. "label": "Maximum Resolution",
  5516. "description": "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway.",
  5517. "type": "float",
  5518. "unit": "mm",
  5519. "default_value": 0.01,
  5520. "minimum_value": "0.001",
  5521. "minimum_value_warning": "0.005",
  5522. "maximum_value_warning": "0.1",
  5523. "settable_per_mesh": true
  5524. },
  5525. "support_skip_some_zags":
  5526. {
  5527. "label": "Break Up Support In Chunks",
  5528. "description": "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern.",
  5529. "type": "bool",
  5530. "default_value": false,
  5531. "enabled": "support_enable and (support_pattern == 'zigzag')",
  5532. "limit_to_extruder": "support_infill_extruder_nr",
  5533. "settable_per_mesh": false,
  5534. "settable_per_extruder": true
  5535. },
  5536. "support_skip_zag_per_mm":
  5537. {
  5538. "label": "Support Chunk Size",
  5539. "description": "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away.",
  5540. "type": "float",
  5541. "unit": "mm",
  5542. "default_value": 20,
  5543. "minimum_value": "0",
  5544. "minimum_value_warning": "support_line_distance",
  5545. "enabled": "support_enable and (support_pattern == 'zigzag') and support_skip_some_zags",
  5546. "limit_to_extruder": "support_infill_extruder_nr",
  5547. "settable_per_mesh": false,
  5548. "settable_per_extruder": true,
  5549. "children":
  5550. {
  5551. "support_zag_skip_count":
  5552. {
  5553. "label": "Support Chunk Line Count",
  5554. "description": "Skip one in every N connection lines to make the support structure easier to break away.",
  5555. "type": "int",
  5556. "default_value": 5,
  5557. "value": "0 if support_line_distance == 0 else round(support_skip_zag_per_mm / support_line_distance)",
  5558. "minimum_value": "1",
  5559. "minimum_value_warning": "3",
  5560. "enabled": "support_enable and (support_pattern == 'zigzag') and support_skip_some_zags",
  5561. "limit_to_extruder": "support_infill_extruder_nr",
  5562. "settable_per_mesh": false,
  5563. "settable_per_extruder": true
  5564. }
  5565. }
  5566. },
  5567. "draft_shield_enabled":
  5568. {
  5569. "label": "Enable Draft Shield",
  5570. "description": "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily.",
  5571. "type": "bool",
  5572. "default_value": false,
  5573. "settable_per_mesh": false,
  5574. "settable_per_extruder": false
  5575. },
  5576. "draft_shield_dist":
  5577. {
  5578. "label": "Draft Shield X/Y Distance",
  5579. "description": "Distance of the draft shield from the print, in the X/Y directions.",
  5580. "unit": "mm",
  5581. "type": "float",
  5582. "minimum_value": "0",
  5583. "maximum_value_warning": "10",
  5584. "default_value": 10,
  5585. "resolve": "max(extruderValues('draft_shield_dist'))",
  5586. "enabled": "draft_shield_enabled",
  5587. "settable_per_mesh": false,
  5588. "settable_per_extruder": false
  5589. },
  5590. "draft_shield_height_limitation":
  5591. {
  5592. "label": "Draft Shield Limitation",
  5593. "description": "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height.",
  5594. "type": "enum",
  5595. "options":
  5596. {
  5597. "full": "Full",
  5598. "limited": "Limited"
  5599. },
  5600. "default_value": "full",
  5601. "resolve": "'full' if 'full' in extruderValues('draft_shield_height_limitation') else 'limited'",
  5602. "enabled": "draft_shield_enabled",
  5603. "settable_per_mesh": false,
  5604. "settable_per_extruder": false
  5605. },
  5606. "draft_shield_height":
  5607. {
  5608. "label": "Draft Shield Height",
  5609. "description": "Height limitation of the draft shield. Above this height no draft shield will be printed.",
  5610. "unit": "mm",
  5611. "type": "float",
  5612. "minimum_value": "0",
  5613. "maximum_value_warning": "9999",
  5614. "default_value": 10,
  5615. "value": "10",
  5616. "enabled": "draft_shield_enabled and draft_shield_height_limitation == 'limited'",
  5617. "settable_per_mesh": false,
  5618. "settable_per_extruder": false
  5619. },
  5620. "conical_overhang_enabled":
  5621. {
  5622. "label": "Make Overhang Printable",
  5623. "description": "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical.",
  5624. "type": "bool",
  5625. "default_value": false
  5626. },
  5627. "conical_overhang_angle":
  5628. {
  5629. "label": "Maximum Model Angle",
  5630. "description": "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way.",
  5631. "unit": "°",
  5632. "type": "float",
  5633. "minimum_value": "-89",
  5634. "minimum_value_warning": "0",
  5635. "maximum_value": "89",
  5636. "default_value": 50,
  5637. "enabled": "conical_overhang_enabled"
  5638. },
  5639. "coasting_enable":
  5640. {
  5641. "label": "Enable Coasting",
  5642. "description": "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing.",
  5643. "type": "bool",
  5644. "default_value": false,
  5645. "settable_per_mesh": false,
  5646. "settable_per_extruder": true
  5647. },
  5648. "coasting_volume":
  5649. {
  5650. "label": "Coasting Volume",
  5651. "description": "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed.",
  5652. "unit": "mm³",
  5653. "type": "float",
  5654. "default_value": 0.064,
  5655. "minimum_value": "0",
  5656. "maximum_value_warning": "machine_nozzle_size * 5",
  5657. "enabled": "coasting_enable",
  5658. "settable_per_mesh": false,
  5659. "settable_per_extruder": true
  5660. },
  5661. "coasting_min_volume":
  5662. {
  5663. "label": "Minimum Volume Before Coasting",
  5664. "description": "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume.",
  5665. "unit": "mm³",
  5666. "type": "float",
  5667. "default_value": 0.8,
  5668. "minimum_value": "0",
  5669. "maximum_value_warning": "10.0",
  5670. "enabled": "coasting_enable",
  5671. "settable_per_mesh": false,
  5672. "settable_per_extruder": true
  5673. },
  5674. "coasting_speed":
  5675. {
  5676. "label": "Coasting Speed",
  5677. "description": "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops.",
  5678. "unit": "%",
  5679. "type": "float",
  5680. "default_value": 90,
  5681. "minimum_value": "0.0001",
  5682. "maximum_value_warning": "100",
  5683. "enabled": "coasting_enable",
  5684. "settable_per_mesh": false,
  5685. "settable_per_extruder": true
  5686. },
  5687. "skin_alternate_rotation":
  5688. {
  5689. "label": "Alternate Skin Rotation",
  5690. "description": "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions.",
  5691. "type": "bool",
  5692. "default_value": false,
  5693. "enabled": "top_bottom_pattern != 'concentric'",
  5694. "limit_to_extruder": "top_bottom_extruder_nr",
  5695. "settable_per_mesh": true
  5696. },
  5697. "cross_infill_pocket_size":
  5698. {
  5699. "label": "Cross 3D Pocket Size",
  5700. "description": "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself.",
  5701. "unit": "mm",
  5702. "type": "float",
  5703. "default_value": 2.0,
  5704. "value": "infill_line_distance",
  5705. "minimum_value": "0",
  5706. "maximum_value_warning": "infill_line_distance * math.sqrt(2)",
  5707. "enabled": "infill_pattern == 'cross_3d'",
  5708. "limit_to_extruder": "infill_extruder_nr",
  5709. "settable_per_mesh": true
  5710. },
  5711. "cross_infill_apply_pockets_alternatingly":
  5712. {
  5713. "label": "Alternate Cross 3D Pockets",
  5714. "description": "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself.",
  5715. "type": "bool",
  5716. "default_value": true,
  5717. "enabled": "infill_pattern == 'cross_3d'",
  5718. "limit_to_extruder": "infill_extruder_nr",
  5719. "settable_per_mesh": true
  5720. },
  5721. "spaghetti_infill_enabled":
  5722. {
  5723. "label": "Spaghetti Infill",
  5724. "description": "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable.",
  5725. "type": "bool",
  5726. "default_value": false,
  5727. "enabled": "infill_sparse_density > 0",
  5728. "limit_to_extruder": "infill_extruder_nr",
  5729. "settable_per_mesh": true
  5730. },
  5731. "spaghetti_infill_stepped":
  5732. {
  5733. "label": "Spaghetti Infill Stepping",
  5734. "description": "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print.",
  5735. "type": "bool",
  5736. "default_value": true,
  5737. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled",
  5738. "limit_to_extruder": "infill_extruder_nr",
  5739. "settable_per_mesh": true
  5740. },
  5741. "spaghetti_max_infill_angle":
  5742. {
  5743. "label": "Spaghetti Maximum Infill Angle",
  5744. "description": "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer.",
  5745. "unit": "°",
  5746. "type": "float",
  5747. "default_value": 10,
  5748. "minimum_value": "0",
  5749. "maximum_value": "90",
  5750. "maximum_value_warning": "45",
  5751. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled and spaghetti_infill_stepped",
  5752. "limit_to_extruder": "infill_extruder_nr",
  5753. "settable_per_mesh": true
  5754. },
  5755. "spaghetti_max_height":
  5756. {
  5757. "label": "Spaghetti Infill Maximum Height",
  5758. "description": "The maximum height of inside space which can be combined and filled from the top.",
  5759. "unit": "mm",
  5760. "type": "float",
  5761. "default_value": 2.0,
  5762. "minimum_value": "layer_height",
  5763. "maximum_value_warning": "10.0",
  5764. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled and spaghetti_infill_stepped",
  5765. "limit_to_extruder": "infill_extruder_nr",
  5766. "settable_per_mesh": true
  5767. },
  5768. "spaghetti_inset":
  5769. {
  5770. "label": "Spaghetti Inset",
  5771. "description": "The offset from the walls from where the spaghetti infill will be printed.",
  5772. "unit": "mm",
  5773. "type": "float",
  5774. "default_value": 0.2,
  5775. "minimum_value_warning": "0",
  5776. "maximum_value_warning": "5.0",
  5777. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled",
  5778. "limit_to_extruder": "infill_extruder_nr",
  5779. "settable_per_mesh": true
  5780. },
  5781. "spaghetti_flow":
  5782. {
  5783. "label": "Spaghetti Flow",
  5784. "description": "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill.",
  5785. "unit": "%",
  5786. "type": "float",
  5787. "default_value": 20,
  5788. "minimum_value": "0",
  5789. "maximum_value_warning": "100",
  5790. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled",
  5791. "limit_to_extruder": "infill_extruder_nr",
  5792. "settable_per_mesh": true
  5793. },
  5794. "spaghetti_infill_extra_volume":
  5795. {
  5796. "label": "Spaghetti Infill Extra Volume",
  5797. "description": "A correction term to adjust the total volume being extruded each time when filling spaghetti.",
  5798. "unit": "mm³",
  5799. "type": "float",
  5800. "default_value": 0,
  5801. "minimum_value_warning": "0",
  5802. "maximum_value_warning": "100",
  5803. "enabled": "infill_sparse_density > 0 and spaghetti_infill_enabled",
  5804. "limit_to_extruder": "infill_extruder_nr",
  5805. "settable_per_mesh": true
  5806. },
  5807. "support_conical_enabled":
  5808. {
  5809. "label": "Enable Conical Support",
  5810. "description": "Experimental feature: Make support areas smaller at the bottom than at the overhang.",
  5811. "type": "bool",
  5812. "default_value": false,
  5813. "enabled": "support_enable",
  5814. "limit_to_extruder": "support_infill_extruder_nr",
  5815. "settable_per_mesh": true
  5816. },
  5817. "support_conical_angle":
  5818. {
  5819. "label": "Conical Support Angle",
  5820. "description": "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top.",
  5821. "unit": "°",
  5822. "type": "float",
  5823. "minimum_value": "-90",
  5824. "minimum_value_warning": "-45",
  5825. "maximum_value_warning": "45",
  5826. "maximum_value": "90",
  5827. "default_value": 30,
  5828. "enabled": "support_conical_enabled and support_enable",
  5829. "limit_to_extruder": "support_infill_extruder_nr",
  5830. "settable_per_mesh": true
  5831. },
  5832. "support_conical_min_width":
  5833. {
  5834. "label": "Conical Support Minimum Width",
  5835. "description": "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures.",
  5836. "unit": "mm",
  5837. "default_value": 5.0,
  5838. "minimum_value": "0",
  5839. "minimum_value_warning": "machine_nozzle_size * 3",
  5840. "maximum_value_warning": "100.0",
  5841. "type": "float",
  5842. "enabled": "support_conical_enabled and support_enable",
  5843. "limit_to_extruder": "support_infill_extruder_nr",
  5844. "settable_per_mesh": true
  5845. },
  5846. "infill_hollow":
  5847. {
  5848. "label": "Hollow Out Objects",
  5849. "description": "Remove all infill and make the inside of the object eligible for support.",
  5850. "type": "bool",
  5851. "default_value": false,
  5852. "settable_per_mesh": true
  5853. },
  5854. "magic_fuzzy_skin_enabled":
  5855. {
  5856. "label": "Fuzzy Skin",
  5857. "description": "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look.",
  5858. "type": "bool",
  5859. "default_value": false,
  5860. "limit_to_extruder": "wall_0_extruder_nr",
  5861. "settable_per_mesh": true
  5862. },
  5863. "magic_fuzzy_skin_thickness":
  5864. {
  5865. "label": "Fuzzy Skin Thickness",
  5866. "description": "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered.",
  5867. "type": "float",
  5868. "unit": "mm",
  5869. "default_value": 0.3,
  5870. "minimum_value": "0.001",
  5871. "maximum_value_warning": "wall_line_width_0",
  5872. "enabled": "magic_fuzzy_skin_enabled",
  5873. "limit_to_extruder": "wall_0_extruder_nr",
  5874. "settable_per_mesh": true
  5875. },
  5876. "magic_fuzzy_skin_point_density":
  5877. {
  5878. "label": "Fuzzy Skin Density",
  5879. "description": "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution.",
  5880. "type": "float",
  5881. "unit": "1/mm",
  5882. "default_value": 1.25,
  5883. "minimum_value": "0.008",
  5884. "minimum_value_warning": "0.1",
  5885. "maximum_value_warning": "10",
  5886. "maximum_value": "2 / magic_fuzzy_skin_thickness",
  5887. "enabled": "magic_fuzzy_skin_enabled",
  5888. "limit_to_extruder": "wall_0_extruder_nr",
  5889. "settable_per_mesh": true,
  5890. "children":
  5891. {
  5892. "magic_fuzzy_skin_point_dist":
  5893. {
  5894. "label": "Fuzzy Skin Point Distance",
  5895. "description": "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness.",
  5896. "type": "float",
  5897. "unit": "mm",
  5898. "default_value": 0.8,
  5899. "minimum_value": "magic_fuzzy_skin_thickness / 2",
  5900. "minimum_value_warning": "0.1",
  5901. "maximum_value_warning": "10",
  5902. "value": "10000 if magic_fuzzy_skin_point_density == 0 else 1 / magic_fuzzy_skin_point_density",
  5903. "enabled": "magic_fuzzy_skin_enabled",
  5904. "limit_to_extruder": "wall_0_extruder_nr",
  5905. "settable_per_mesh": true
  5906. }
  5907. }
  5908. },
  5909. "flow_rate_max_extrusion_offset":
  5910. {
  5911. "label": "Flow rate compensation max extrusion offset",
  5912. "description": "The maximum distance in mm to compensate.",
  5913. "unit": "mm",
  5914. "type": "float",
  5915. "minimum_value": "0",
  5916. "maximum_value_warning": "10",
  5917. "default_value": 0,
  5918. "value": "0",
  5919. "enabled": true,
  5920. "settable_per_mesh": false,
  5921. "settable_per_extruder": false,
  5922. "settable_per_meshgroup": false
  5923. },
  5924. "flow_rate_extrusion_offset_factor":
  5925. {
  5926. "label": "Flow rate compensation factor",
  5927. "description": "The multiplication factor for the flow rate -> distance translation.",
  5928. "unit": "%",
  5929. "type": "float",
  5930. "minimum_value": "0",
  5931. "maximum_value_warning": "100",
  5932. "default_value": 100,
  5933. "value": "100",
  5934. "enabled": true,
  5935. "settable_per_mesh": false,
  5936. "settable_per_extruder": false,
  5937. "settable_per_meshgroup": false
  5938. },
  5939. "wireframe_enabled":
  5940. {
  5941. "label": "Wire Printing",
  5942. "description": "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines.",
  5943. "type": "bool",
  5944. "default_value": false,
  5945. "settable_per_mesh": false,
  5946. "settable_per_extruder": false,
  5947. "settable_per_meshgroup": false
  5948. },
  5949. "wireframe_height":
  5950. {
  5951. "label": "WP Connection Height",
  5952. "description": "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing.",
  5953. "type": "float",
  5954. "unit": "mm",
  5955. "default_value": 3,
  5956. "value": "machine_nozzle_head_distance",
  5957. "minimum_value": "0.0001",
  5958. "maximum_value_warning": "20",
  5959. "enabled": "wireframe_enabled",
  5960. "settable_per_mesh": false,
  5961. "settable_per_extruder": false,
  5962. "settable_per_meshgroup": false
  5963. },
  5964. "wireframe_roof_inset":
  5965. {
  5966. "label": "WP Roof Inset Distance",
  5967. "description": "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing.",
  5968. "type": "float",
  5969. "unit": "mm",
  5970. "default_value": 3,
  5971. "minimum_value": "0",
  5972. "minimum_value_warning": "machine_nozzle_size",
  5973. "maximum_value_warning": "20",
  5974. "enabled": "wireframe_enabled",
  5975. "value": "wireframe_height",
  5976. "settable_per_mesh": false,
  5977. "settable_per_extruder": false,
  5978. "settable_per_meshgroup": false
  5979. },
  5980. "wireframe_printspeed":
  5981. {
  5982. "label": "WP Speed",
  5983. "description": "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing.",
  5984. "unit": "mm/s",
  5985. "type": "float",
  5986. "default_value": 5,
  5987. "minimum_value": "0.1",
  5988. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + max(max_feedrate_z_override, machine_max_feedrate_z) ** 2)",
  5989. "maximum_value_warning": "50",
  5990. "enabled": "wireframe_enabled",
  5991. "settable_per_mesh": false,
  5992. "settable_per_extruder": false,
  5993. "settable_per_meshgroup": false,
  5994. "children":
  5995. {
  5996. "wireframe_printspeed_bottom":
  5997. {
  5998. "label": "WP Bottom Printing Speed",
  5999. "description": "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing.",
  6000. "unit": "mm/s",
  6001. "type": "float",
  6002. "default_value": 5,
  6003. "minimum_value": "0.1",
  6004. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6005. "maximum_value_warning": "50",
  6006. "enabled": "wireframe_enabled",
  6007. "value": "wireframe_printspeed",
  6008. "settable_per_mesh": false,
  6009. "settable_per_extruder": false,
  6010. "settable_per_meshgroup": false
  6011. },
  6012. "wireframe_printspeed_up":
  6013. {
  6014. "label": "WP Upward Printing Speed",
  6015. "description": "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing.",
  6016. "unit": "mm/s",
  6017. "type": "float",
  6018. "default_value": 5,
  6019. "minimum_value": "0.1",
  6020. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + max(max_feedrate_z_override, machine_max_feedrate_z) ** 2)",
  6021. "maximum_value_warning": "50",
  6022. "enabled": "wireframe_enabled",
  6023. "value": "wireframe_printspeed",
  6024. "settable_per_mesh": false,
  6025. "settable_per_extruder": false,
  6026. "settable_per_meshgroup": false
  6027. },
  6028. "wireframe_printspeed_down":
  6029. {
  6030. "label": "WP Downward Printing Speed",
  6031. "description": "Speed of printing a line diagonally downward. Only applies to Wire Printing.",
  6032. "unit": "mm/s",
  6033. "type": "float",
  6034. "default_value": 5,
  6035. "minimum_value": "0.1",
  6036. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2 + max(max_feedrate_z_override, machine_max_feedrate_z) ** 2)",
  6037. "maximum_value_warning": "50",
  6038. "enabled": "wireframe_enabled",
  6039. "value": "wireframe_printspeed",
  6040. "settable_per_mesh": false,
  6041. "settable_per_extruder": false,
  6042. "settable_per_meshgroup": false
  6043. },
  6044. "wireframe_printspeed_flat":
  6045. {
  6046. "label": "WP Horizontal Printing Speed",
  6047. "description": "Speed of printing the horizontal contours of the model. Only applies to Wire Printing.",
  6048. "unit": "mm/s",
  6049. "type": "float",
  6050. "default_value": 5,
  6051. "minimum_value": "0.1",
  6052. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6053. "maximum_value_warning": "100",
  6054. "value": "wireframe_printspeed",
  6055. "enabled": "wireframe_enabled",
  6056. "settable_per_mesh": false,
  6057. "settable_per_extruder": false,
  6058. "settable_per_meshgroup": false
  6059. }
  6060. }
  6061. },
  6062. "wireframe_flow":
  6063. {
  6064. "label": "WP Flow",
  6065. "description": "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing.",
  6066. "unit": "%",
  6067. "default_value": 100,
  6068. "minimum_value": "0",
  6069. "maximum_value_warning": "100",
  6070. "type": "float",
  6071. "enabled": "wireframe_enabled",
  6072. "settable_per_mesh": false,
  6073. "settable_per_extruder": false,
  6074. "settable_per_meshgroup": false,
  6075. "children":
  6076. {
  6077. "wireframe_flow_connection":
  6078. {
  6079. "label": "WP Connection Flow",
  6080. "description": "Flow compensation when going up or down. Only applies to Wire Printing.",
  6081. "unit": "%",
  6082. "default_value": 100,
  6083. "minimum_value": "0",
  6084. "maximum_value_warning": "100",
  6085. "type": "float",
  6086. "enabled": "wireframe_enabled",
  6087. "value": "wireframe_flow",
  6088. "settable_per_mesh": false,
  6089. "settable_per_extruder": false,
  6090. "settable_per_meshgroup": false
  6091. },
  6092. "wireframe_flow_flat":
  6093. {
  6094. "label": "WP Flat Flow",
  6095. "description": "Flow compensation when printing flat lines. Only applies to Wire Printing.",
  6096. "unit": "%",
  6097. "default_value": 100,
  6098. "minimum_value": "0",
  6099. "maximum_value_warning": "100",
  6100. "type": "float",
  6101. "enabled": "wireframe_enabled",
  6102. "value": "wireframe_flow",
  6103. "settable_per_mesh": false,
  6104. "settable_per_extruder": false,
  6105. "settable_per_meshgroup": false
  6106. }
  6107. }
  6108. },
  6109. "wireframe_top_delay":
  6110. {
  6111. "label": "WP Top Delay",
  6112. "description": "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing.",
  6113. "unit": "s",
  6114. "type": "float",
  6115. "default_value": 0,
  6116. "minimum_value": "0",
  6117. "maximum_value_warning": "1",
  6118. "enabled": "wireframe_enabled",
  6119. "settable_per_mesh": false,
  6120. "settable_per_extruder": false,
  6121. "settable_per_meshgroup": false
  6122. },
  6123. "wireframe_bottom_delay":
  6124. {
  6125. "label": "WP Bottom Delay",
  6126. "description": "Delay time after a downward move. Only applies to Wire Printing.",
  6127. "unit": "s",
  6128. "type": "float",
  6129. "default_value": 0,
  6130. "minimum_value": "0",
  6131. "maximum_value_warning": "1",
  6132. "enabled": "wireframe_enabled",
  6133. "settable_per_mesh": false,
  6134. "settable_per_extruder": false,
  6135. "settable_per_meshgroup": false
  6136. },
  6137. "wireframe_flat_delay":
  6138. {
  6139. "label": "WP Flat Delay",
  6140. "description": "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing.",
  6141. "unit": "s",
  6142. "type": "float",
  6143. "default_value": 0.1,
  6144. "minimum_value": "0",
  6145. "maximum_value_warning": "0.5",
  6146. "enabled": "wireframe_enabled",
  6147. "settable_per_mesh": false,
  6148. "settable_per_extruder": false,
  6149. "settable_per_meshgroup": false
  6150. },
  6151. "wireframe_up_half_speed":
  6152. {
  6153. "label": "WP Ease Upward",
  6154. "description": "Distance of an upward move which is extruded with half speed.\nThis can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing.",
  6155. "type": "float",
  6156. "unit": "mm",
  6157. "default_value": 0.3,
  6158. "minimum_value": "0",
  6159. "maximum_value_warning": "5.0",
  6160. "enabled": "wireframe_enabled",
  6161. "settable_per_mesh": false,
  6162. "settable_per_extruder": false,
  6163. "settable_per_meshgroup": false
  6164. },
  6165. "wireframe_top_jump":
  6166. {
  6167. "label": "WP Knot Size",
  6168. "description": "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing.",
  6169. "type": "float",
  6170. "unit": "mm",
  6171. "default_value": 0.6,
  6172. "minimum_value": "0",
  6173. "maximum_value_warning": "2.0",
  6174. "enabled": "wireframe_enabled",
  6175. "settable_per_mesh": false,
  6176. "settable_per_extruder": false,
  6177. "settable_per_meshgroup": false
  6178. },
  6179. "wireframe_fall_down":
  6180. {
  6181. "label": "WP Fall Down",
  6182. "description": "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing.",
  6183. "type": "float",
  6184. "unit": "mm",
  6185. "default_value": 0.5,
  6186. "minimum_value": "0",
  6187. "maximum_value_warning": "wireframe_height",
  6188. "enabled": "wireframe_enabled",
  6189. "settable_per_mesh": false,
  6190. "settable_per_extruder": false,
  6191. "settable_per_meshgroup": false
  6192. },
  6193. "wireframe_drag_along":
  6194. {
  6195. "label": "WP Drag Along",
  6196. "description": "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing.",
  6197. "type": "float",
  6198. "unit": "mm",
  6199. "default_value": 0.6,
  6200. "minimum_value": "0",
  6201. "maximum_value_warning": "wireframe_height",
  6202. "enabled": "wireframe_enabled",
  6203. "settable_per_mesh": false,
  6204. "settable_per_extruder": false,
  6205. "settable_per_meshgroup": false
  6206. },
  6207. "wireframe_strategy":
  6208. {
  6209. "label": "WP Strategy",
  6210. "description": "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted.",
  6211. "type": "enum",
  6212. "options":
  6213. {
  6214. "compensate": "Compensate",
  6215. "knot": "Knot",
  6216. "retract": "Retract"
  6217. },
  6218. "default_value": "compensate",
  6219. "enabled": "wireframe_enabled",
  6220. "settable_per_mesh": false,
  6221. "settable_per_extruder": false,
  6222. "settable_per_meshgroup": false
  6223. },
  6224. "wireframe_straight_before_down":
  6225. {
  6226. "label": "WP Straighten Downward Lines",
  6227. "description": "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing.",
  6228. "type": "float",
  6229. "unit": "%",
  6230. "default_value": 20,
  6231. "minimum_value": "0",
  6232. "maximum_value": "100",
  6233. "enabled": "wireframe_enabled",
  6234. "settable_per_mesh": false,
  6235. "settable_per_extruder": false,
  6236. "settable_per_meshgroup": false
  6237. },
  6238. "wireframe_roof_fall_down":
  6239. {
  6240. "label": "WP Roof Fall Down",
  6241. "description": "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing.",
  6242. "type": "float",
  6243. "unit": "mm",
  6244. "default_value": 2,
  6245. "minimum_value_warning": "0",
  6246. "maximum_value_warning": "wireframe_roof_inset",
  6247. "enabled": "wireframe_enabled",
  6248. "settable_per_mesh": false,
  6249. "settable_per_extruder": false,
  6250. "settable_per_meshgroup": false
  6251. },
  6252. "wireframe_roof_drag_along":
  6253. {
  6254. "label": "WP Roof Drag Along",
  6255. "description": "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing.",
  6256. "type": "float",
  6257. "unit": "mm",
  6258. "default_value": 0.8,
  6259. "minimum_value": "0",
  6260. "maximum_value_warning": "10",
  6261. "enabled": "wireframe_enabled",
  6262. "settable_per_mesh": false,
  6263. "settable_per_extruder": false,
  6264. "settable_per_meshgroup": false
  6265. },
  6266. "wireframe_roof_outer_delay":
  6267. {
  6268. "label": "WP Roof Outer Delay",
  6269. "description": "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing.",
  6270. "type": "float",
  6271. "unit": "s",
  6272. "default_value": 0.2,
  6273. "minimum_value": "0",
  6274. "maximum_value_warning": "2.0",
  6275. "enabled": "wireframe_enabled",
  6276. "settable_per_mesh": false,
  6277. "settable_per_extruder": false,
  6278. "settable_per_meshgroup": false
  6279. },
  6280. "wireframe_nozzle_clearance":
  6281. {
  6282. "label": "WP Nozzle Clearance",
  6283. "description": "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing.",
  6284. "type": "float",
  6285. "unit": "mm",
  6286. "default_value": 1,
  6287. "minimum_value_warning": "0",
  6288. "maximum_value_warning": "10.0",
  6289. "enabled": "wireframe_enabled",
  6290. "settable_per_mesh": false,
  6291. "settable_per_extruder": false,
  6292. "settable_per_meshgroup": false
  6293. },
  6294. "adaptive_layer_height_enabled":
  6295. {
  6296. "label": "Use adaptive layers",
  6297. "description": "Adaptive layers computes the layer heights depending on the shape of the model.",
  6298. "type": "bool",
  6299. "default_value": false,
  6300. "settable_per_mesh": false,
  6301. "settable_per_extruder": false,
  6302. "settable_per_meshgroup": false
  6303. },
  6304. "adaptive_layer_height_variation":
  6305. {
  6306. "label": "Adaptive layers maximum variation",
  6307. "description": "The maximum allowed height different from the base layer height in mm.",
  6308. "type": "float",
  6309. "enabled": "adaptive_layer_height_enabled",
  6310. "default_value": 0.1,
  6311. "settable_per_mesh": false,
  6312. "settable_per_extruder": false,
  6313. "settable_per_meshgroup": false
  6314. },
  6315. "adaptive_layer_height_variation_step":
  6316. {
  6317. "label": "Adaptive layers variation step size",
  6318. "description": "The difference in height of the next layer height compared to the previous one.",
  6319. "type": "float",
  6320. "enabled": "adaptive_layer_height_enabled",
  6321. "default_value": 0.01,
  6322. "settable_per_mesh": false,
  6323. "settable_per_extruder": false,
  6324. "settable_per_meshgroup": false
  6325. },
  6326. "adaptive_layer_height_threshold":
  6327. {
  6328. "label": "Adaptive layers threshold",
  6329. "description": "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer.",
  6330. "type": "float",
  6331. "enabled": "adaptive_layer_height_enabled",
  6332. "default_value": 200.0,
  6333. "settable_per_mesh": false,
  6334. "settable_per_extruder": false,
  6335. "settable_per_meshgroup": false
  6336. },
  6337. "bridge_settings_enabled":
  6338. {
  6339. "label": "Enable Bridge Settings",
  6340. "description": "Detect bridges and modify print speed, flow and fan settings while bridges are printed.",
  6341. "type": "bool",
  6342. "default_value": false,
  6343. "settable_per_mesh": true,
  6344. "settable_per_extruder": false,
  6345. "settable_per_meshgroup": false
  6346. },
  6347. "bridge_wall_min_length":
  6348. {
  6349. "label": "Minimum Bridge Wall Length",
  6350. "description": "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings.",
  6351. "unit": "mm",
  6352. "type": "float",
  6353. "minimum_value": "0",
  6354. "default_value": 5,
  6355. "enabled": "bridge_settings_enabled",
  6356. "settable_per_mesh": false,
  6357. "settable_per_extruder": true
  6358. },
  6359. "bridge_skin_support_threshold":
  6360. {
  6361. "label": "Bridge Skin Support Threshold",
  6362. "description": "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings.",
  6363. "unit": "%",
  6364. "default_value": 50,
  6365. "type": "float",
  6366. "minimum_value": "0",
  6367. "maximum_value": "100",
  6368. "enabled": "bridge_settings_enabled",
  6369. "settable_per_mesh": true
  6370. },
  6371. "bridge_wall_max_overhang":
  6372. {
  6373. "label": "Bridge Wall Max Overhang",
  6374. "description": "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings.",
  6375. "unit": "%",
  6376. "default_value": 100,
  6377. "type": "float",
  6378. "minimum_value": "0",
  6379. "maximum_value": "100",
  6380. "enabled": "bridge_settings_enabled",
  6381. "settable_per_mesh": true
  6382. },
  6383. "bridge_wall_coast":
  6384. {
  6385. "label": "Bridge Wall Coasting",
  6386. "description": "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge.",
  6387. "unit": "%",
  6388. "default_value": 100,
  6389. "type": "float",
  6390. "minimum_value": "0",
  6391. "maximum_value": "500",
  6392. "enabled": "bridge_settings_enabled",
  6393. "settable_per_mesh": false
  6394. },
  6395. "bridge_wall_speed":
  6396. {
  6397. "label": "Bridge Wall Speed",
  6398. "description": "The speed at which the bridge walls are printed.",
  6399. "unit": "mm/s",
  6400. "type": "float",
  6401. "minimum_value": "cool_min_speed",
  6402. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6403. "maximum_value_warning": "300",
  6404. "default_value": 15,
  6405. "value": "max(cool_min_speed, speed_wall_0 / 2)",
  6406. "enabled": "bridge_settings_enabled",
  6407. "settable_per_mesh": true
  6408. },
  6409. "bridge_wall_material_flow":
  6410. {
  6411. "label": "Bridge Wall Flow",
  6412. "description": "When printing bridge walls, the amount of material extruded is multiplied by this value.",
  6413. "unit": "%",
  6414. "default_value": 50,
  6415. "type": "float",
  6416. "minimum_value": "5",
  6417. "minimum_value_warning": "50",
  6418. "maximum_value_warning": "150",
  6419. "enabled": "bridge_settings_enabled",
  6420. "settable_per_mesh": true
  6421. },
  6422. "bridge_skin_speed":
  6423. {
  6424. "label": "Bridge Skin Speed",
  6425. "description": "The speed at which bridge skin regions are printed.",
  6426. "unit": "mm/s",
  6427. "type": "float",
  6428. "minimum_value": "cool_min_speed",
  6429. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6430. "maximum_value_warning": "300",
  6431. "default_value": 15,
  6432. "value": "max(cool_min_speed, speed_topbottom / 2)",
  6433. "enabled": "bridge_settings_enabled",
  6434. "settable_per_mesh": true
  6435. },
  6436. "bridge_skin_material_flow":
  6437. {
  6438. "label": "Bridge Skin Flow",
  6439. "description": "When printing bridge skin regions, the amount of material extruded is multiplied by this value.",
  6440. "unit": "%",
  6441. "default_value": 60,
  6442. "type": "float",
  6443. "minimum_value": "5",
  6444. "minimum_value_warning": "50",
  6445. "maximum_value_warning": "150",
  6446. "enabled": "bridge_settings_enabled",
  6447. "settable_per_mesh": true
  6448. },
  6449. "bridge_skin_density":
  6450. {
  6451. "label": "Bridge Skin Density",
  6452. "description": "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines.",
  6453. "unit": "%",
  6454. "default_value": 100,
  6455. "type": "float",
  6456. "minimum_value": "5",
  6457. "maximum_value": "100",
  6458. "minimum_value_warning": "20",
  6459. "enabled": "bridge_settings_enabled",
  6460. "settable_per_mesh": true
  6461. },
  6462. "bridge_fan_speed":
  6463. {
  6464. "label": "Bridge Fan Speed",
  6465. "description": "Percentage fan speed to use when printing bridge walls and skin.",
  6466. "unit": "%",
  6467. "minimum_value": "0",
  6468. "maximum_value": "100",
  6469. "default_value": 100,
  6470. "type": "float",
  6471. "enabled": "bridge_settings_enabled",
  6472. "settable_per_mesh": true
  6473. },
  6474. "bridge_enable_more_layers":
  6475. {
  6476. "label": "Bridge Has Multiple Layers",
  6477. "description": "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings.",
  6478. "type": "bool",
  6479. "default_value": true,
  6480. "enabled": "bridge_settings_enabled",
  6481. "settable_per_mesh": true
  6482. },
  6483. "bridge_skin_speed_2":
  6484. {
  6485. "label": "Bridge Second Skin Speed",
  6486. "description": "Print speed to use when printing the second bridge skin layer.",
  6487. "unit": "mm/s",
  6488. "type": "float",
  6489. "minimum_value": "cool_min_speed",
  6490. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6491. "maximum_value_warning": "300",
  6492. "default_value": 25,
  6493. "value": "bridge_skin_speed",
  6494. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6495. "settable_per_mesh": true
  6496. },
  6497. "bridge_skin_material_flow_2":
  6498. {
  6499. "label": "Bridge Second Skin Flow",
  6500. "description": "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value.",
  6501. "unit": "%",
  6502. "default_value": 100,
  6503. "type": "float",
  6504. "minimum_value": "5",
  6505. "maximum_value": "500",
  6506. "minimum_value_warning": "50",
  6507. "maximum_value_warning": "150",
  6508. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6509. "settable_per_mesh": true
  6510. },
  6511. "bridge_skin_density_2":
  6512. {
  6513. "label": "Bridge Second Skin Density",
  6514. "description": "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines.",
  6515. "unit": "%",
  6516. "default_value": 75,
  6517. "type": "float",
  6518. "minimum_value": "5",
  6519. "maximum_value": "100",
  6520. "minimum_value_warning": "20",
  6521. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6522. "settable_per_mesh": true
  6523. },
  6524. "bridge_fan_speed_2":
  6525. {
  6526. "label": "Bridge Second Skin Fan Speed",
  6527. "description": "Percentage fan speed to use when printing the second bridge skin layer.",
  6528. "unit": "%",
  6529. "minimum_value": "0",
  6530. "maximum_value": "100",
  6531. "default_value": 0,
  6532. "type": "float",
  6533. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6534. "settable_per_mesh": true
  6535. },
  6536. "bridge_skin_speed_3":
  6537. {
  6538. "label": "Bridge Third Skin Speed",
  6539. "description": "Print speed to use when printing the third bridge skin layer.",
  6540. "unit": "mm/s",
  6541. "type": "float",
  6542. "minimum_value": "cool_min_speed",
  6543. "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
  6544. "maximum_value_warning": "300",
  6545. "default_value": 15,
  6546. "value": "bridge_skin_speed",
  6547. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6548. "settable_per_mesh": true
  6549. },
  6550. "bridge_skin_material_flow_3":
  6551. {
  6552. "label": "Bridge Third Skin Flow",
  6553. "description": "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value.",
  6554. "unit": "%",
  6555. "default_value": 110,
  6556. "type": "float",
  6557. "minimum_value": "5",
  6558. "maximum_value": "500",
  6559. "minimum_value_warning": "50",
  6560. "maximum_value_warning": "150",
  6561. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6562. "settable_per_mesh": true
  6563. },
  6564. "bridge_skin_density_3":
  6565. {
  6566. "label": "Bridge Third Skin Density",
  6567. "description": "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines.",
  6568. "unit": "%",
  6569. "default_value": 80,
  6570. "type": "float",
  6571. "minimum_value": "5",
  6572. "maximum_value": "100",
  6573. "minimum_value_warning": "20",
  6574. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6575. "settable_per_mesh": true
  6576. },
  6577. "bridge_fan_speed_3":
  6578. {
  6579. "label": "Bridge Third Skin Fan Speed",
  6580. "description": "Percentage fan speed to use when printing the third bridge skin layer.",
  6581. "unit": "%",
  6582. "minimum_value": "0",
  6583. "maximum_value": "100",
  6584. "default_value": 0,
  6585. "type": "float",
  6586. "enabled": "bridge_settings_enabled and bridge_enable_more_layers",
  6587. "settable_per_mesh": true
  6588. },
  6589. "wall_try_line_thickness":
  6590. {
  6591. "label": "Try Multiple Line Thicknesses",
  6592. "description": "When creating inner walls, try various line thicknesses to fit the wall lines better in narrow spaces. This reduces or increases the inner wall line width by up to 0.01mm.",
  6593. "default_value": false,
  6594. "type": "bool",
  6595. "settable_per_mesh": true
  6596. }
  6597. }
  6598. },
  6599. "command_line_settings": {
  6600. "label": "Command Line Settings",
  6601. "description": "Settings which are only used if CuraEngine isn't called from the Cura frontend.",
  6602. "type": "category",
  6603. "enabled": false,
  6604. "children": {
  6605. "center_object": {
  6606. "description": "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved.",
  6607. "type": "bool",
  6608. "label": "Center object",
  6609. "default_value": false,
  6610. "enabled": false
  6611. },
  6612. "mesh_position_x": {
  6613. "description": "Offset applied to the object in the x direction.",
  6614. "type": "float",
  6615. "label": "Mesh position x",
  6616. "default_value": 0,
  6617. "enabled": false
  6618. },
  6619. "mesh_position_y": {
  6620. "description": "Offset applied to the object in the y direction.",
  6621. "type": "float",
  6622. "label": "Mesh position y",
  6623. "default_value": 0,
  6624. "enabled": false
  6625. },
  6626. "mesh_position_z": {
  6627. "description": "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'.",
  6628. "type": "float",
  6629. "label": "Mesh position z",
  6630. "default_value": 0,
  6631. "enabled": false
  6632. },
  6633. "mesh_rotation_matrix": {
  6634. "label": "Mesh Rotation Matrix",
  6635. "description": "Transformation matrix to be applied to the model when loading it from file.",
  6636. "type": "str",
  6637. "default_value": "[[1,0,0], [0,1,0], [0,0,1]]",
  6638. "enabled": false
  6639. }
  6640. }
  6641. }
  6642. }
  6643. }
Add Comment
Please, Sign In to add comment