fdmprinter.def.json 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831
  1. {
  2. "id": "fdmprinter",
  3. "name": "FDM Printer Base Description",
  4. "version": 2,
  5. "metadata":
  6. {
  7. "type": "machine",
  8. "author": "Ultimaker B.V.",
  9. "category": "Ultimaker",
  10. "manufacturer": "Ultimaker",
  11. "file_formats": "text/x-gcode;application/x-stl-ascii;application/x-stl-binary;application/x-wavefront-obj;application/x3g",
  12. "visible": false,
  13. "preferred_material": "pla",
  14. "preferred_quality": "normal",
  15. "machine_extruder_trains":
  16. {
  17. "0": "fdmextruder"
  18. }
  19. },
  20. "settings":
  21. {
  22. "machine_settings":
  23. {
  24. "label": "Machine",
  25. "type": "category",
  26. "description": "Machine specific settings",
  27. "icon": "category_machine",
  28. "children":
  29. {
  30. "machine_show_variants":
  31. {
  32. "label": "Show machine variants",
  33. "description": "Whether to show the different variants of this machine, which are described in separate json files.",
  34. "default_value": false,
  35. "type": "bool",
  36. "settable_per_mesh": false,
  37. "settable_per_extruder": false,
  38. "settable_per_meshgroup": false
  39. },
  40. "machine_start_gcode":
  41. {
  42. "label": "Start GCode",
  43. "description": "Gcode commands to be executed at the very start - separated by \\n.",
  44. "default_value": "G28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nG92 E0\nG1 F200 E3\nG92 E0",
  45. "type": "str",
  46. "settable_per_mesh": false,
  47. "settable_per_extruder": false,
  48. "settable_per_meshgroup": false
  49. },
  50. "machine_end_gcode":
  51. {
  52. "label": "End GCode",
  53. "description": "Gcode commands to be executed at the very end - separated by \\n.",
  54. "default_value": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84",
  55. "type": "str",
  56. "settable_per_mesh": false,
  57. "settable_per_extruder": false,
  58. "settable_per_meshgroup": false
  59. },
  60. "material_bed_temp_wait":
  61. {
  62. "label": "Wait for bed heatup",
  63. "description": "Whether to insert a command to wait until the bed temperature is reached at the start.",
  64. "default_value": true,
  65. "type": "bool",
  66. "settable_per_mesh": false,
  67. "settable_per_extruder": false,
  68. "settable_per_meshgroup": false
  69. },
  70. "material_print_temp_wait":
  71. {
  72. "label": "Wait for nozzle heatup",
  73. "description": "Whether to wait until the nozzle temperature is reached at the start.",
  74. "default_value": true,
  75. "type": "bool",
  76. "settable_per_mesh": false,
  77. "settable_per_extruder": false,
  78. "settable_per_meshgroup": false
  79. },
  80. "material_print_temp_prepend":
  81. {
  82. "label": "Include material temperatures",
  83. "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.",
  84. "default_value": true,
  85. "type": "bool",
  86. "settable_per_mesh": false,
  87. "settable_per_extruder": false,
  88. "settable_per_meshgroup": false
  89. },
  90. "machine_width":
  91. {
  92. "label": "Machine width",
  93. "description": "The width (X-direction) of the printable area.",
  94. "default_value": 100,
  95. "type": "float",
  96. "settable_per_mesh": false,
  97. "settable_per_extruder": false,
  98. "settable_per_meshgroup": false
  99. },
  100. "machine_depth":
  101. {
  102. "label": "Machine depth",
  103. "description": "The depth (Y-direction) of the printable area.",
  104. "default_value": 100,
  105. "type": "float",
  106. "settable_per_mesh": false,
  107. "settable_per_extruder": false,
  108. "settable_per_meshgroup": false
  109. },
  110. "machine_height":
  111. {
  112. "label": "Machine height",
  113. "description": "The height (Z-direction) of the printable area.",
  114. "default_value": 100,
  115. "type": "float",
  116. "settable_per_mesh": false,
  117. "settable_per_extruder": false,
  118. "settable_per_meshgroup": false
  119. },
  120. "machine_heated_bed":
  121. {
  122. "label": "Has heated bed",
  123. "description": "Whether the machine has a heated bed present.",
  124. "default_value": false,
  125. "type": "bool",
  126. "settable_per_mesh": false,
  127. "settable_per_extruder": false,
  128. "settable_per_meshgroup": false
  129. },
  130. "machine_center_is_zero":
  131. {
  132. "label": "Is center origin",
  133. "description": "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area.",
  134. "default_value": false,
  135. "type": "bool",
  136. "settable_per_mesh": false,
  137. "settable_per_extruder": false,
  138. "settable_per_meshgroup": false
  139. },
  140. "machine_extruder_count":
  141. {
  142. "label": "Number extruders",
  143. "description": "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle.",
  144. "default_value": 1,
  145. "type": "int",
  146. "settable_per_mesh": false,
  147. "settable_per_extruder": false,
  148. "settable_per_meshgroup": false
  149. },
  150. "machine_nozzle_tip_outer_diameter":
  151. {
  152. "label": "Outer nozzle diameter",
  153. "description": "The outer diameter of the tip of the nozzle.",
  154. "default_value": 1,
  155. "type": "float",
  156. "settable_per_mesh": false,
  157. "settable_per_extruder": true,
  158. "settable_per_meshgroup": false,
  159. "settable_globally": false
  160. },
  161. "machine_nozzle_head_distance":
  162. {
  163. "label": "Nozzle length",
  164. "description": "The height difference between the tip of the nozzle and the lowest part of the print head.",
  165. "default_value": 3,
  166. "type": "float",
  167. "settable_per_mesh": false,
  168. "settable_per_extruder": false,
  169. "settable_per_meshgroup": false
  170. },
  171. "machine_nozzle_expansion_angle":
  172. {
  173. "label": "Nozzle angle",
  174. "description": "The angle between the horizontal plane and the conical part right above the tip of the nozzle.",
  175. "default_value": 45,
  176. "type": "int",
  177. "settable_per_mesh": false,
  178. "settable_per_extruder": false,
  179. "settable_per_meshgroup": false
  180. },
  181. "machine_heat_zone_length":
  182. {
  183. "label": "Heat zone length",
  184. "description": "The distance from the tip of the nozzle in which heat from the nozzle is transfered to the filament.",
  185. "default_value": 16,
  186. "type": "float",
  187. "settable_per_mesh": false,
  188. "settable_per_extruder": true,
  189. "settable_per_meshgroup": false
  190. },
  191. "machine_nozzle_heat_up_speed":
  192. {
  193. "label": "Heat up speed",
  194. "description": "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature.",
  195. "default_value": 2.0,
  196. "unit": "°C/s",
  197. "type": "float",
  198. "settable_per_mesh": false,
  199. "settable_per_extruder": true
  200. },
  201. "machine_nozzle_cool_down_speed":
  202. {
  203. "label": "Cool down speed",
  204. "description": "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature.",
  205. "default_value": 2.0,
  206. "unit": "°C/s",
  207. "type": "float",
  208. "settable_per_mesh": false,
  209. "settable_per_extruder": true
  210. },
  211. "machine_min_cool_heat_time_window":
  212. {
  213. "label": "Minimal Time Standby Temperature",
  214. "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.",
  215. "default_value": 50.0,
  216. "unit": "s",
  217. "type": "float",
  218. "settable_per_mesh": false,
  219. "settable_per_extruder": true
  220. },
  221. "machine_gcode_flavor":
  222. {
  223. "label": "Gcode flavour",
  224. "description": "The type of gcode to be generated.",
  225. "default_value": "RepRap",
  226. "type": "str",
  227. "settable_per_mesh": false,
  228. "settable_per_extruder": false,
  229. "settable_per_meshgroup": false
  230. },
  231. "machine_disallowed_areas":
  232. {
  233. "label": "Disallowed areas",
  234. "description": "A list of polygons with areas the print head is not allowed to enter.",
  235. "type": "polygons",
  236. "default_value": [],
  237. "settable_per_mesh": false,
  238. "settable_per_extruder": false,
  239. "settable_per_meshgroup": false
  240. },
  241. "machine_head_polygon":
  242. {
  243. "label": "Machine head polygon",
  244. "description": "A 2D silhouette of the print head (fan caps excluded).",
  245. "type": "polygon",
  246. "default_value":
  247. [
  248. [
  249. -1,
  250. 1
  251. ],
  252. [
  253. -1,
  254. -1
  255. ],
  256. [
  257. 1,
  258. -1
  259. ],
  260. [
  261. 1,
  262. 1
  263. ]
  264. ],
  265. "settable_per_mesh": false,
  266. "settable_per_extruder": false,
  267. "settable_per_meshgroup": false
  268. },
  269. "machine_head_with_fans_polygon":
  270. {
  271. "label": "Machine head & Fan polygon",
  272. "description": "A 2D silhouette of the print head (fan caps included).",
  273. "type": "polygon",
  274. "default_value":
  275. [
  276. [
  277. -20,
  278. 10
  279. ],
  280. [
  281. 10,
  282. 10
  283. ],
  284. [
  285. 10,
  286. -10
  287. ],
  288. [
  289. -20,
  290. -10
  291. ]
  292. ],
  293. "settable_per_mesh": false,
  294. "settable_per_extruder": false,
  295. "settable_per_meshgroup": false
  296. },
  297. "gantry_height":
  298. {
  299. "label": "Gantry height",
  300. "description": "The height difference between the tip of the nozzle and the gantry system (X and Y axes).",
  301. "default_value": 99999999999,
  302. "type": "float",
  303. "settable_per_mesh": false,
  304. "settable_per_extruder": false,
  305. "settable_per_meshgroup": false
  306. },
  307. "machine_nozzle_size":
  308. {
  309. "label": "Nozzle Diameter",
  310. "description": "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size.",
  311. "unit": "mm",
  312. "type": "float",
  313. "default_value": 0.4,
  314. "minimum_value": "0.001",
  315. "maximum_value_warning": "10",
  316. "settable_per_mesh": false,
  317. "settable_per_extruder": true
  318. },
  319. "machine_use_extruder_offset_to_offset_coords":
  320. {
  321. "label": "Offset With Extruder",
  322. "description": "Apply the extruder offset to the coordinate system.",
  323. "type": "bool",
  324. "default_value": true,
  325. "settable_per_mesh": false,
  326. "settable_per_extruder": false,
  327. "settable_per_meshgroup": false
  328. },
  329. "extruder_prime_pos_z":
  330. {
  331. "label": "Extruder Prime Z Position",
  332. "description": "The Z coordinate of the position where the nozzle primes at the start of printing.",
  333. "type": "float",
  334. "unit": "mm",
  335. "default_value": 0,
  336. "minimum_value_warning": "0",
  337. "maximum_value_warning": "machine_height",
  338. "settable_per_mesh": false,
  339. "settable_per_extruder": true
  340. },
  341. "extruder_prime_pos_abs":
  342. {
  343. "label": "Absolute Extruder Prime Position",
  344. "description": "Make the extruder prime position absolute rather than relative to the last-known location of the head.",
  345. "type": "bool",
  346. "default_value": false,
  347. "settable_per_mesh": false,
  348. "settable_per_extruder": true
  349. },
  350. "machine_max_feedrate_x": {
  351. "label": "Maximum Speed X",
  352. "description": "The maximum speed for the motor of the X-direction.",
  353. "unit": "mm/s",
  354. "type": "float",
  355. "default_value": 500,
  356. "settable_per_mesh": false,
  357. "settable_per_extruder": false,
  358. "settable_per_meshgroup": false
  359. },
  360. "machine_max_feedrate_y": {
  361. "label": "Maximum Speed Y",
  362. "description": "The maximum speed for the motor of the Y-direction.",
  363. "unit": "mm/s",
  364. "type": "float",
  365. "default_value": 500,
  366. "settable_per_mesh": false,
  367. "settable_per_extruder": false,
  368. "settable_per_meshgroup": false
  369. },
  370. "machine_max_feedrate_z": {
  371. "label": "Maximum Speed Z",
  372. "description": "The maximum speed for the motor of the Z-direction.",
  373. "unit": "mm/s",
  374. "type": "float",
  375. "default_value": 5,
  376. "settable_per_mesh": false,
  377. "settable_per_extruder": false,
  378. "settable_per_meshgroup": false
  379. },
  380. "machine_max_feedrate_e": {
  381. "label": "Maximum Feedrate",
  382. "description": "The maximum speed of the filament.",
  383. "unit": "mm/s",
  384. "type": "float",
  385. "default_value": 25,
  386. "settable_per_mesh": false,
  387. "settable_per_extruder": false,
  388. "settable_per_meshgroup": false
  389. },
  390. "machine_max_acceleration_x": {
  391. "label": "Maximum Acceleration X",
  392. "description": "Maximum acceleration for the motor of the X-direction",
  393. "unit": "mm/s²",
  394. "type": "float",
  395. "default_value": 9000,
  396. "settable_per_mesh": false,
  397. "settable_per_extruder": false,
  398. "settable_per_meshgroup": false
  399. },
  400. "machine_max_acceleration_y": {
  401. "label": "Maximum Acceleration Y",
  402. "description": "Maximum acceleration for the motor of the Y-direction.",
  403. "unit": "mm/s²",
  404. "type": "float",
  405. "default_value": 9000,
  406. "settable_per_mesh": false,
  407. "settable_per_extruder": false,
  408. "settable_per_meshgroup": false
  409. },
  410. "machine_max_acceleration_z": {
  411. "label": "Maximum Acceleration Z",
  412. "description": "Maximum acceleration for the motor of the Z-direction.",
  413. "unit": "mm/s²",
  414. "type": "float",
  415. "default_value": 100,
  416. "settable_per_mesh": false,
  417. "settable_per_extruder": false,
  418. "settable_per_meshgroup": false
  419. },
  420. "machine_max_acceleration_e": {
  421. "label": "Maximum Filament Acceleration",
  422. "description": "Maximum acceleration for the motor of the filament.",
  423. "unit": "mm/s²",
  424. "type": "float",
  425. "default_value": 10000,
  426. "settable_per_mesh": false,
  427. "settable_per_extruder": false,
  428. "settable_per_meshgroup": false
  429. },
  430. "machine_acceleration": {
  431. "label": "Default Acceleration",
  432. "description": "The default acceleration of print head movement.",
  433. "unit": "mm/s²",
  434. "type": "float",
  435. "default_value": 4000,
  436. "settable_per_mesh": false,
  437. "settable_per_extruder": false,
  438. "settable_per_meshgroup": false
  439. },
  440. "machine_max_jerk_xy": {
  441. "label": "Default X-Y Jerk",
  442. "description": "Default jerk for movement in the horizontal plane.",
  443. "unit": "mm/s",
  444. "type": "float",
  445. "default_value": 20.0,
  446. "settable_per_mesh": false,
  447. "settable_per_extruder": false,
  448. "settable_per_meshgroup": false
  449. },
  450. "machine_max_jerk_z": {
  451. "label": "Default Z Jerk",
  452. "description": "Default jerk for the motor of the Z-direction.",
  453. "unit": "mm/s",
  454. "type": "float",
  455. "default_value": 0.4,
  456. "settable_per_mesh": false,
  457. "settable_per_extruder": false,
  458. "settable_per_meshgroup": false
  459. },
  460. "machine_max_jerk_e": {
  461. "label": "Default Filament Jerk",
  462. "description": "Default jerk for the motor of the filament.",
  463. "unit": "mm/s",
  464. "type": "float",
  465. "default_value": 5.0,
  466. "settable_per_mesh": false,
  467. "settable_per_extruder": false,
  468. "settable_per_meshgroup": false
  469. },
  470. "machine_minimum_feedrate": {
  471. "label": "Minimum Feedrate",
  472. "description": "The minimal movement speed of the print head.",
  473. "unit": "mm/s",
  474. "type": "float",
  475. "default_value": 0.0,
  476. "settable_per_mesh": false,
  477. "settable_per_extruder": false,
  478. "settable_per_meshgroup": false
  479. }
  480. }
  481. },
  482. "resolution":
  483. {
  484. "label": "Quality",
  485. "type": "category",
  486. "icon": "category_layer_height",
  487. "description": "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)",
  488. "children":
  489. {
  490. "layer_height":
  491. {
  492. "label": "Layer Height",
  493. "description": "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution.",
  494. "unit": "mm",
  495. "type": "float",
  496. "default_value": 0.1,
  497. "minimum_value": "0.001",
  498. "minimum_value_warning": "0.04",
  499. "maximum_value_warning": "0.8 * machine_nozzle_size",
  500. "settable_per_mesh": false,
  501. "settable_per_extruder": false
  502. },
  503. "layer_height_0":
  504. {
  505. "label": "Initial Layer Height",
  506. "description": "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier.",
  507. "unit": "mm",
  508. "type": "float",
  509. "default_value": 0.3,
  510. "minimum_value": "0.001",
  511. "minimum_value_warning": "0.04",
  512. "maximum_value_warning": "0.8 * machine_nozzle_size",
  513. "settable_per_mesh": false,
  514. "settable_per_extruder": false
  515. },
  516. "line_width":
  517. {
  518. "label": "Line Width",
  519. "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.",
  520. "unit": "mm",
  521. "minimum_value": "0.0001",
  522. "minimum_value_warning": "0.2",
  523. "maximum_value_warning": "2 * machine_nozzle_size",
  524. "default_value": 0.4,
  525. "type": "float",
  526. "value": "machine_nozzle_size",
  527. "settable_per_mesh": true,
  528. "children":
  529. {
  530. "wall_line_width":
  531. {
  532. "label": "Wall Line Width",
  533. "description": "Width of a single wall line.",
  534. "unit": "mm",
  535. "minimum_value": "0.0001",
  536. "minimum_value_warning": "0.2",
  537. "maximum_value_warning": "5",
  538. "value":"line_width",
  539. "default_value": 0.4,
  540. "type": "float",
  541. "settable_per_mesh": true,
  542. "children":
  543. {
  544. "wall_line_width_0":
  545. {
  546. "label": "Outer Wall Line Width",
  547. "description": "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed.",
  548. "unit": "mm",
  549. "minimum_value": "0.0001",
  550. "minimum_value_warning": "0.2",
  551. "maximum_value_warning": "5",
  552. "default_value": 0.4,
  553. "value":"wall_line_width",
  554. "type": "float",
  555. "settable_per_mesh": true
  556. },
  557. "wall_line_width_x":
  558. {
  559. "label": "Inner Wall(s) Line Width",
  560. "description": "Width of a single wall line for all wall lines except the outermost one.",
  561. "unit": "mm",
  562. "minimum_value": "0.0001",
  563. "minimum_value_warning": "0.2",
  564. "maximum_value_warning": "5",
  565. "default_value": 0.4,
  566. "value":"wall_line_width",
  567. "type": "float",
  568. "settable_per_mesh": true
  569. }
  570. }
  571. },
  572. "skin_line_width":
  573. {
  574. "label": "Top/Bottom Line Width",
  575. "description": "Width of a single top/bottom line.",
  576. "unit": "mm",
  577. "minimum_value": "0.0001",
  578. "minimum_value_warning": "0.2",
  579. "maximum_value_warning": "5",
  580. "default_value": 0.4,
  581. "type": "float",
  582. "value": "line_width",
  583. "settable_per_mesh": true
  584. },
  585. "infill_line_width":
  586. {
  587. "label": "Infill Line Width",
  588. "description": "Width of a single infill line.",
  589. "unit": "mm",
  590. "minimum_value": "0.0001",
  591. "minimum_value_warning": "0.2",
  592. "maximum_value_warning": "5",
  593. "default_value": 0.4,
  594. "type": "float",
  595. "value": "line_width",
  596. "settable_per_mesh": true
  597. },
  598. "skirt_line_width":
  599. {
  600. "label": "Skirt Line Width",
  601. "description": "Width of a single skirt line.",
  602. "unit": "mm",
  603. "minimum_value": "0.0001",
  604. "minimum_value_warning": "0.2",
  605. "maximum_value_warning": "5",
  606. "default_value": 0.4,
  607. "type": "float",
  608. "value": "line_width",
  609. "settable_per_mesh": false,
  610. "settable_per_extruder": true
  611. },
  612. "support_line_width":
  613. {
  614. "label": "Support Line Width",
  615. "description": "Width of a single support structure line.",
  616. "unit": "mm",
  617. "minimum_value": "0.0001",
  618. "minimum_value_warning": "0.2",
  619. "maximum_value_warning": "5",
  620. "default_value": 0.4,
  621. "type": "float",
  622. "enabled": "support_enable",
  623. "value": "line_width",
  624. "settable_per_mesh": false,
  625. "settable_per_extruder": false
  626. },
  627. "support_roof_line_width":
  628. {
  629. "label": "Support Roof Line Width",
  630. "description": "Width of a single support roof line.",
  631. "unit": "mm",
  632. "default_value": 0.4,
  633. "minimum_value": "0.0001",
  634. "maximum_value_warning": "machine_nozzle_size * 2",
  635. "type": "float",
  636. "enabled": "support_roof_enable",
  637. "value": "line_width",
  638. "settable_per_mesh": false,
  639. "settable_per_extruder": false
  640. },
  641. "prime_tower_line_width":
  642. {
  643. "label": "Prime Tower Line Width",
  644. "description": "Width of a single prime tower line.",
  645. "type": "float",
  646. "unit": "mm",
  647. "enabled": "prime_tower_enable",
  648. "default_value": 0.4,
  649. "value": "line_width",
  650. "minimum_value": "0.0001",
  651. "minimum_value_warning": "0.2",
  652. "maximum_value_warning": "5",
  653. "settable_per_mesh": false,
  654. "settable_per_extruder": true
  655. }
  656. }
  657. }
  658. }
  659. },
  660. "shell":
  661. {
  662. "label": "Shell",
  663. "icon": "category_shell",
  664. "description": "Shell",
  665. "type": "category",
  666. "children":
  667. {
  668. "wall_thickness":
  669. {
  670. "label": "Wall Thickness",
  671. "description": "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls.",
  672. "unit": "mm",
  673. "default_value": 0.8,
  674. "minimum_value": "0",
  675. "minimum_value_warning": "line_width",
  676. "maximum_value_warning": "5 * line_width",
  677. "type": "float",
  678. "settable_per_mesh": true,
  679. "children":
  680. {
  681. "wall_line_count":
  682. {
  683. "label": "Wall Line Count",
  684. "description": "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number.",
  685. "default_value": 2,
  686. "minimum_value": "0",
  687. "type": "int",
  688. "value": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1)",
  689. "settable_per_mesh": true
  690. }
  691. }
  692. },
  693. "top_bottom_thickness":
  694. {
  695. "label": "Top/Bottom Thickness",
  696. "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.",
  697. "unit": "mm",
  698. "default_value": 0.8,
  699. "minimum_value": "0",
  700. "minimum_value_warning": "0.6",
  701. "maximum_value_warning": "machine_height",
  702. "type": "float",
  703. "settable_per_mesh": true,
  704. "children":
  705. {
  706. "top_thickness":
  707. {
  708. "label": "Top Thickness",
  709. "description": "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers.",
  710. "unit": "mm",
  711. "default_value": 0.8,
  712. "minimum_value": "0",
  713. "maximum_value_warning": "machine_height",
  714. "type": "float",
  715. "value": "top_bottom_thickness",
  716. "settable_per_mesh": true,
  717. "children":
  718. {
  719. "top_layers":
  720. {
  721. "label": "Top Layers",
  722. "description": "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number.",
  723. "default_value": 8,
  724. "minimum_value": "0",
  725. "maximum_value_warning": "100",
  726. "type": "int",
  727. "value": "0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / layer_height, 4))",
  728. "settable_per_mesh": true
  729. }
  730. }
  731. },
  732. "bottom_thickness":
  733. {
  734. "label": "Bottom Thickness",
  735. "description": "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers.",
  736. "unit": "mm",
  737. "default_value": 0.6,
  738. "minimum_value": "0",
  739. "type": "float",
  740. "value": "top_bottom_thickness",
  741. "maximum_value_warning": "machine_height",
  742. "settable_per_mesh": true,
  743. "children":
  744. {
  745. "bottom_layers":
  746. {
  747. "label": "Bottom Layers",
  748. "description": "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number.",
  749. "minimum_value": "0",
  750. "default_value": 6,
  751. "type": "int",
  752. "value": "999999 if infill_sparse_density == 100 else math.ceil(round(bottom_thickness / layer_height, 4))",
  753. "settable_per_mesh": true
  754. }
  755. }
  756. }
  757. }
  758. },
  759. "top_bottom_pattern":
  760. {
  761. "label": "Top/Bottom Pattern",
  762. "description": "The pattern of the top/bottom layers.",
  763. "type": "enum",
  764. "options":
  765. {
  766. "lines": "Lines",
  767. "concentric": "Concentric",
  768. "zigzag": "Zig Zag"
  769. },
  770. "default_value": "lines",
  771. "settable_per_mesh": true
  772. },
  773. "wall_0_inset":
  774. {
  775. "label": "Outer Wall Inset",
  776. "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 object.",
  777. "unit": "mm",
  778. "type": "float",
  779. "default_value": 0.0,
  780. "value": "(machine_nozzle_size - wall_line_width_0) / 2 if wall_line_width_0 < machine_nozzle_size else 0",
  781. "minimum_value_warning": "0",
  782. "maximum_value_warning": "machine_nozzle_size",
  783. "settable_per_mesh": true
  784. },
  785. "alternate_extra_perimeter":
  786. {
  787. "label": "Alternate Extra Wall",
  788. "description": "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints.",
  789. "type": "bool",
  790. "default_value": false,
  791. "settable_per_mesh": true
  792. },
  793. "travel_compensate_overlapping_walls_enabled":
  794. {
  795. "label": "Compensate Wall Overlaps",
  796. "description": "Compensate the flow for parts of a wall being printed where there is already a wall in place.",
  797. "type": "bool",
  798. "default_value": true,
  799. "settable_per_mesh": true,
  800. "children":
  801. {
  802. "travel_compensate_overlapping_walls_0_enabled": {
  803. "label": "Compensate Outer Wall Overlaps",
  804. "description": "Compensate the flow for parts of an outer wall being printed where there is already a wall in place.",
  805. "type": "bool",
  806. "default_value": true,
  807. "value": "travel_compensate_overlapping_walls_enabled",
  808. "settable_per_mesh": true
  809. },
  810. "travel_compensate_overlapping_walls_x_enabled": {
  811. "label": "Compensate Inner Wall Overlaps",
  812. "description": "Compensate the flow for parts of an inner wall being printed where there is already a wall in place.",
  813. "type": "bool",
  814. "default_value": true,
  815. "value": "travel_compensate_overlapping_walls_enabled",
  816. "settable_per_mesh": true
  817. }
  818. }
  819. },
  820. "xy_offset":
  821. {
  822. "label": "Horizontal Expansion",
  823. "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.",
  824. "unit": "mm",
  825. "type": "float",
  826. "minimum_value_warning": "-10",
  827. "maximum_value_warning": "10",
  828. "default_value": 0,
  829. "settable_per_mesh": true
  830. },
  831. "z_seam_type":
  832. {
  833. "label": "Z Seam Alignment",
  834. "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 at the back, 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.",
  835. "type": "enum",
  836. "options":
  837. {
  838. "back": "Back",
  839. "shortest": "Shortest",
  840. "random": "Random"
  841. },
  842. "default_value": "shortest",
  843. "settable_per_mesh": true
  844. },
  845. "skin_no_small_gaps_heuristic":
  846. {
  847. "label": "Ignore Small Z Gaps",
  848. "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.",
  849. "type": "bool",
  850. "default_value": true,
  851. "settable_per_mesh": true
  852. }
  853. }
  854. },
  855. "infill":
  856. {
  857. "label": "Infill",
  858. "icon": "category_infill",
  859. "description": "Infill",
  860. "type": "category",
  861. "children":
  862. {
  863. "infill_sparse_density":
  864. {
  865. "label": "Infill Density",
  866. "description": "Adjusts the density of infill of the print.",
  867. "unit": "%",
  868. "type": "float",
  869. "default_value": 20,
  870. "minimum_value": "0",
  871. "maximum_value_warning": "100",
  872. "settable_per_mesh": true,
  873. "children":
  874. {
  875. "infill_line_distance":
  876. {
  877. "label": "Infill Line Distance",
  878. "description": "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width.",
  879. "unit": "mm",
  880. "type": "float",
  881. "default_value": 2,
  882. "minimum_value": "0",
  883. "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 == \"cubic\" else (4 if infill_pattern == \"tetrahedral\" else 1)))",
  884. "settable_per_mesh": true
  885. }
  886. }
  887. },
  888. "infill_pattern":
  889. {
  890. "label": "Infill Pattern",
  891. "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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction.",
  892. "type": "enum",
  893. "options":
  894. {
  895. "grid": "Grid",
  896. "lines": "Lines",
  897. "triangles": "Triangles",
  898. "cubic": "Cubic",
  899. "tetrahedral": "Tetrahedral",
  900. "concentric": "Concentric",
  901. "zigzag": "Zig Zag"
  902. },
  903. "default_value": "grid",
  904. "value": "'lines' if infill_sparse_density > 25 else 'grid'",
  905. "settable_per_mesh": true
  906. },
  907. "infill_overlap":
  908. {
  909. "label": "Infill Overlap Percentage",
  910. "description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
  911. "unit": "%",
  912. "type": "float",
  913. "default_value": 10,
  914. "value": "10 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0",
  915. "minimum_value_warning": "-50",
  916. "maximum_value_warning": "100",
  917. "enabled": "infill_pattern != 'concentric'",
  918. "settable_per_mesh": true,
  919. "children":
  920. {
  921. "infill_overlap_mm":
  922. {
  923. "label": "Infill Overlap",
  924. "description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
  925. "unit": "mm",
  926. "type": "float",
  927. "default_value": 0.04,
  928. "minimum_value_warning": "-0.5 * machine_nozzle_size",
  929. "maximum_value_warning": "machine_nozzle_size",
  930. "value": "infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0",
  931. "enabled": "infill_pattern != 'concentric'",
  932. "settable_per_mesh": true
  933. }
  934. }
  935. },
  936. "skin_overlap": {
  937. "label": "Skin Overlap Percentage",
  938. "description": "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin.",
  939. "unit": "%",
  940. "type": "float",
  941. "default_value": 5,
  942. "minimum_value_warning": "-50",
  943. "maximum_value_warning": "100",
  944. "value": "5 if top_bottom_pattern != 'concentric' else 0",
  945. "enabled": "top_bottom_pattern != 'concentric'",
  946. "settable_per_mesh": true,
  947. "children": {
  948. "skin_overlap_mm": {
  949. "label": "Skin Overlap",
  950. "description": "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin.",
  951. "unit": "mm",
  952. "type": "float",
  953. "default_value": 0.02,
  954. "minimum_value_warning": "-0.5 * machine_nozzle_size",
  955. "maximum_value_warning": "machine_nozzle_size",
  956. "value": "skin_line_width * skin_overlap / 100 if top_bottom_pattern != 'concentric' else 0",
  957. "enabled": "top_bottom_pattern != 'concentric'",
  958. "settable_per_mesh": true
  959. }
  960. }
  961. },
  962. "infill_wipe_dist":
  963. {
  964. "label": "Infill Wipe Distance",
  965. "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.",
  966. "unit": "mm",
  967. "type": "float",
  968. "default_value": 0.04,
  969. "value": "wall_line_width_0 / 4 if wall_line_count == 1 else wall_line_width_x / 4",
  970. "minimum_value_warning": "0",
  971. "maximum_value_warning": "machine_nozzle_size",
  972. "settable_per_mesh": true
  973. },
  974. "infill_sparse_thickness":
  975. {
  976. "label": "Infill Layer Thickness",
  977. "description": "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded.",
  978. "unit": "mm",
  979. "type": "float",
  980. "default_value": 0.1,
  981. "minimum_value": "0.0001",
  982. "maximum_value_warning": "0.32",
  983. "maximum_value": "layer_height * 8",
  984. "value": "layer_height",
  985. "settable_per_mesh": true
  986. },
  987. "infill_before_walls":
  988. {
  989. "label": "Infill Before Walls",
  990. "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.",
  991. "type": "bool",
  992. "default_value": true,
  993. "settable_per_mesh": true
  994. }
  995. }
  996. },
  997. "material":
  998. {
  999. "label": "Material",
  1000. "icon": "category_material",
  1001. "description": "Material",
  1002. "type": "category",
  1003. "children":
  1004. {
  1005. "material_flow_dependent_temperature":
  1006. {
  1007. "label": "Auto Temperature",
  1008. "description": "Change the temperature for each layer automatically with the average flow speed of that layer.",
  1009. "type": "bool",
  1010. "default_value": false,
  1011. "enabled": "False",
  1012. "settable_per_mesh": false,
  1013. "settable_per_extruder": true
  1014. },
  1015. "material_print_temperature":
  1016. {
  1017. "label": "Printing Temperature",
  1018. "description": "The temperature used for printing. Set at 0 to pre-heat the printer manually.",
  1019. "unit": "°C",
  1020. "type": "float",
  1021. "default_value": 210,
  1022. "minimum_value": "0",
  1023. "maximum_value_warning": "260",
  1024. "enabled": "not (material_flow_dependent_temperature)",
  1025. "settable_per_mesh": false,
  1026. "settable_per_extruder": true
  1027. },
  1028. "material_flow_temp_graph":
  1029. {
  1030. "label": "Flow Temperature Graph",
  1031. "description": "Data linking material flow (in mm3 per second) to temperature (degrees Celsius).",
  1032. "unit": "",
  1033. "type": "str",
  1034. "default_value": "[[3.5,200],[7.0,240]]",
  1035. "enabled": "False",
  1036. "comments": "old enabled function: material_flow_dependent_temperature",
  1037. "settable_per_mesh": false,
  1038. "settable_per_extruder": true
  1039. },
  1040. "material_extrusion_cool_down_speed": {
  1041. "label": "Extrusion Cool Down Speed Modifier",
  1042. "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.",
  1043. "unit": "°C/s",
  1044. "type": "float",
  1045. "default_value": 0.5,
  1046. "minimum_value": "0",
  1047. "maximum_value_warning": "10.0",
  1048. "enabled": "False",
  1049. "comments": "old enabled function: material_flow_dependent_temperature or machine_extruder_count > 1",
  1050. "settable_per_mesh": false,
  1051. "settable_per_extruder": true
  1052. },
  1053. "material_bed_temperature": {
  1054. "label": "Bed Temperature",
  1055. "description": "The temperature used for the heated bed. Set at 0 to pre-heat the printer manually.",
  1056. "unit": "°C",
  1057. "type": "float",
  1058. "default_value": 60,
  1059. "minimum_value": "0",
  1060. "maximum_value_warning": "260",
  1061. "enabled": "machine_heated_bed",
  1062. "settable_per_mesh": false,
  1063. "settable_per_extruder": false,
  1064. "settable_per_meshgroup": false
  1065. },
  1066. "material_diameter": {
  1067. "label": "Diameter",
  1068. "description": "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament.",
  1069. "unit": "mm",
  1070. "type": "float",
  1071. "default_value": 2.85,
  1072. "minimum_value": "0.0001",
  1073. "minimum_value_warning": "0.4",
  1074. "maximum_value_warning": "3.5",
  1075. "settable_per_mesh": false,
  1076. "settable_per_extruder": true
  1077. },
  1078. "material_flow": {
  1079. "label": "Flow",
  1080. "description": "Flow compensation: the amount of material extruded is multiplied by this value.",
  1081. "unit": "%",
  1082. "default_value": 100,
  1083. "type": "float",
  1084. "minimum_value": "5",
  1085. "minimum_value_warning": "50",
  1086. "maximum_value_warning": "150",
  1087. "settable_per_mesh": true
  1088. },
  1089. "retraction_enable": {
  1090. "label": "Enable Retraction",
  1091. "description": "Retract the filament when the nozzle is moving over a non-printed area. ",
  1092. "type": "bool",
  1093. "default_value": true,
  1094. "settable_per_mesh": false,
  1095. "settable_per_extruder": true
  1096. },
  1097. "retraction_amount": {
  1098. "label": "Retraction Distance",
  1099. "description": "The length of material retracted during a retraction move.",
  1100. "unit": "mm",
  1101. "type": "float",
  1102. "default_value": 6.5,
  1103. "minimum_value_warning": "-0.0001",
  1104. "maximum_value_warning": "10.0",
  1105. "enabled": "retraction_enable",
  1106. "settable_per_mesh": false,
  1107. "settable_per_extruder": true
  1108. },
  1109. "retraction_speed": {
  1110. "label": "Retraction Speed",
  1111. "description": "The speed at which the filament is retracted and primed during a retraction move.",
  1112. "unit": "mm/s",
  1113. "type": "float",
  1114. "default_value": 25,
  1115. "minimum_value": "0",
  1116. "maximum_value": "299792458000",
  1117. "maximum_value_warning": "100",
  1118. "enabled": "retraction_enable",
  1119. "settable_per_mesh": false,
  1120. "settable_per_extruder": true,
  1121. "children": {
  1122. "retraction_retract_speed": {
  1123. "label": "Retraction Retract Speed",
  1124. "description": "The speed at which the filament is retracted during a retraction move.",
  1125. "unit": "mm/s",
  1126. "type": "float",
  1127. "default_value": 25,
  1128. "minimum_value": "0",
  1129. "maximum_value": "299792458000",
  1130. "maximum_value_warning": "100",
  1131. "enabled": "retraction_enable",
  1132. "value": "retraction_speed",
  1133. "settable_per_mesh": false,
  1134. "settable_per_extruder": true
  1135. },
  1136. "retraction_prime_speed": {
  1137. "label": "Retraction Prime Speed",
  1138. "description": "The speed at which the filament is primed during a retraction move.",
  1139. "unit": "mm/s",
  1140. "type": "float",
  1141. "default_value": 25,
  1142. "minimum_value": "0",
  1143. "maximum_value": "299792458000",
  1144. "maximum_value_warning": "100",
  1145. "enabled": "retraction_enable",
  1146. "value": "retraction_speed",
  1147. "settable_per_mesh": false,
  1148. "settable_per_extruder": true
  1149. }
  1150. }
  1151. },
  1152. "retraction_extra_prime_amount": {
  1153. "label": "Retraction Extra Prime Amount",
  1154. "description": "Some material can ooze away during a travel move, which can be compensated for here.",
  1155. "unit": "mm³",
  1156. "type": "float",
  1157. "default_value": 0,
  1158. "minimum_value_warning": "-0.0001",
  1159. "maximum_value_warning": "5.0",
  1160. "enabled": "retraction_enable",
  1161. "settable_per_mesh": false,
  1162. "settable_per_extruder": true
  1163. },
  1164. "retraction_min_travel": {
  1165. "label": "Retraction Minimum Travel",
  1166. "description": "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area.",
  1167. "unit": "mm",
  1168. "type": "float",
  1169. "default_value": 1.5,
  1170. "value": "line_width * 2",
  1171. "minimum_value": "0",
  1172. "maximum_value_warning": "10",
  1173. "enabled": "retraction_enable",
  1174. "settable_per_mesh": false,
  1175. "settable_per_extruder": true
  1176. },
  1177. "retraction_count_max": {
  1178. "label": "Maximum Retraction Count",
  1179. "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.",
  1180. "default_value": 90,
  1181. "minimum_value": "0",
  1182. "maximum_value_warning": "100",
  1183. "type": "int",
  1184. "enabled": "retraction_enable",
  1185. "settable_per_mesh": false,
  1186. "settable_per_extruder": true
  1187. },
  1188. "retraction_extrusion_window": {
  1189. "label": "Minimum Extrusion Distance Window",
  1190. "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.",
  1191. "unit": "mm",
  1192. "type": "float",
  1193. "default_value": 4.5,
  1194. "minimum_value": "0",
  1195. "maximum_value_warning": "retraction_amount * 2",
  1196. "value": "retraction_amount",
  1197. "enabled": "retraction_enable",
  1198. "settable_per_mesh": false,
  1199. "settable_per_extruder": true
  1200. },
  1201. "retraction_hop_enabled": {
  1202. "label": "Z Hop when Retracted",
  1203. "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.",
  1204. "type": "bool",
  1205. "default_value": false,
  1206. "enabled": "retraction_enable",
  1207. "settable_per_mesh": false,
  1208. "settable_per_extruder": true,
  1209. "children": {
  1210. "retraction_hop_only_when_collides": {
  1211. "label": "Z Hop Only Over Printed Parts",
  1212. "description": "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling.",
  1213. "type": "bool",
  1214. "default_value": false,
  1215. "enabled": "retraction_enable and retraction_hop_enabled and travel_avoid_other_parts",
  1216. "settable_per_mesh": false,
  1217. "settable_per_extruder": true
  1218. },
  1219. "retraction_hop": {
  1220. "label": "Z Hop Height",
  1221. "description": "The height difference when performing a Z Hop.",
  1222. "unit": "mm",
  1223. "type": "float",
  1224. "default_value": 1,
  1225. "minimum_value_warning": "-0.0001",
  1226. "maximum_value_warning": "10",
  1227. "enabled": "retraction_enable and retraction_hop_enabled",
  1228. "settable_per_mesh": false,
  1229. "settable_per_extruder": true
  1230. }
  1231. }
  1232. },
  1233. "material_standby_temperature":
  1234. {
  1235. "label": "Standby Temperature",
  1236. "description": "The temperature of the nozzle when another nozzle is currently used for printing.",
  1237. "type": "float",
  1238. "unit": "°C",
  1239. "default_value": 150,
  1240. "minimum_value": "0",
  1241. "maximum_value_warning": "260",
  1242. "settable_per_mesh": false,
  1243. "settable_per_extruder": true
  1244. },
  1245. "switch_extruder_retraction_amount":
  1246. {
  1247. "label": "Nozzle Switch Retraction Distance",
  1248. "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.",
  1249. "type": "float",
  1250. "unit": "mm",
  1251. "enabled": "retraction_enable",
  1252. "default_value": 20,
  1253. "value": "machine_heat_zone_length",
  1254. "minimum_value_warning": "0",
  1255. "maximum_value_warning": "100",
  1256. "settable_per_mesh": false,
  1257. "settable_per_extruder": true
  1258. },
  1259. "switch_extruder_retraction_speeds":
  1260. {
  1261. "label": "Nozzle Switch Retraction Speed",
  1262. "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.",
  1263. "type": "float",
  1264. "unit": "mm/s",
  1265. "enabled": "retraction_enable",
  1266. "default_value": 20,
  1267. "minimum_value": "0.1",
  1268. "maximum_value_warning": "300",
  1269. "settable_per_mesh": false,
  1270. "settable_per_extruder": true,
  1271. "children":
  1272. {
  1273. "switch_extruder_retraction_speed":
  1274. {
  1275. "label": "Nozzle Switch Retract Speed",
  1276. "description": "The speed at which the filament is retracted during a nozzle switch retract.",
  1277. "type": "float",
  1278. "unit": "mm/s",
  1279. "enabled": "retraction_enable",
  1280. "default_value": 20,
  1281. "value": "switch_extruder_retraction_speeds",
  1282. "minimum_value": "0.1",
  1283. "maximum_value_warning": "300",
  1284. "settable_per_mesh": false,
  1285. "settable_per_extruder": true
  1286. },
  1287. "switch_extruder_prime_speed":
  1288. {
  1289. "label": "Nozzle Switch Prime Speed",
  1290. "description": "The speed at which the filament is pushed back after a nozzle switch retraction.",
  1291. "type": "float",
  1292. "unit": "mm/s",
  1293. "enabled": "retraction_enable",
  1294. "default_value": 20,
  1295. "value": "switch_extruder_retraction_speeds",
  1296. "minimum_value": "0.1",
  1297. "maximum_value_warning": "300",
  1298. "settable_per_mesh": false,
  1299. "settable_per_extruder": true
  1300. }
  1301. }
  1302. },
  1303. "retraction_hop_after_extruder_switch": {
  1304. "label": "Z Hop After Extruder Switch",
  1305. "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.",
  1306. "type": "bool",
  1307. "default_value": true,
  1308. "enabled": "retraction_hop_enabled",
  1309. "settable_per_mesh": false,
  1310. "settable_per_extruder": true
  1311. }
  1312. }
  1313. },
  1314. "speed":
  1315. {
  1316. "label": "Speed",
  1317. "icon": "category_speed",
  1318. "description": "Speed",
  1319. "type": "category",
  1320. "children":
  1321. {
  1322. "speed_print":
  1323. {
  1324. "label": "Print Speed",
  1325. "description": "The speed at which printing happens.",
  1326. "unit": "mm/s",
  1327. "type": "float",
  1328. "minimum_value": "0.1",
  1329. "maximum_value_warning": "150",
  1330. "maximum_value": "299792458000",
  1331. "default_value": 60,
  1332. "settable_per_mesh": true,
  1333. "children":
  1334. {
  1335. "speed_infill":
  1336. {
  1337. "label": "Infill Speed",
  1338. "description": "The speed at which infill is printed.",
  1339. "unit": "mm/s",
  1340. "type": "float",
  1341. "minimum_value": "0.1",
  1342. "maximum_value": "299792458000",
  1343. "maximum_value_warning": "150",
  1344. "default_value": 60,
  1345. "value": "speed_print",
  1346. "settable_per_mesh": true
  1347. },
  1348. "speed_wall":
  1349. {
  1350. "label": "Wall Speed",
  1351. "description": "The speed at which the walls are printed.",
  1352. "unit": "mm/s",
  1353. "type": "float",
  1354. "minimum_value": "0.1",
  1355. "maximum_value": "299792458000",
  1356. "maximum_value_warning": "150",
  1357. "default_value": 30,
  1358. "value": "speed_print / 2",
  1359. "settable_per_mesh": true,
  1360. "children":
  1361. {
  1362. "speed_wall_0":
  1363. {
  1364. "label": "Outer Wall Speed",
  1365. "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.",
  1366. "unit": "mm/s",
  1367. "type": "float",
  1368. "minimum_value": "0.1",
  1369. "maximum_value": "299792458000",
  1370. "maximum_value_warning": "150",
  1371. "default_value": 30,
  1372. "value": "speed_wall",
  1373. "settable_per_mesh": true
  1374. },
  1375. "speed_wall_x":
  1376. {
  1377. "label": "Inner Wall Speed",
  1378. "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.",
  1379. "unit": "mm/s",
  1380. "type": "float",
  1381. "minimum_value": "0.1",
  1382. "maximum_value": "299792458000",
  1383. "maximum_value_warning": "150",
  1384. "default_value": 60,
  1385. "value": "speed_wall * 2",
  1386. "settable_per_mesh": true
  1387. }
  1388. }
  1389. },
  1390. "speed_topbottom":
  1391. {
  1392. "label": "Top/Bottom Speed",
  1393. "description": "The speed at which top/bottom layers are printed.",
  1394. "unit": "mm/s",
  1395. "type": "float",
  1396. "minimum_value": "0.1",
  1397. "maximum_value": "299792458000",
  1398. "maximum_value_warning": "150",
  1399. "default_value": 30,
  1400. "value": "speed_print / 2",
  1401. "settable_per_mesh": true
  1402. },
  1403. "speed_support":
  1404. {
  1405. "label": "Support Speed",
  1406. "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.",
  1407. "unit": "mm/s",
  1408. "type": "float",
  1409. "minimum_value": "0.1",
  1410. "maximum_value": "299792458000",
  1411. "maximum_value_warning": "150",
  1412. "default_value": 60,
  1413. "value": "speed_print",
  1414. "enabled": "support_enable",
  1415. "settable_per_mesh": false,
  1416. "settable_per_extruder": false,
  1417. "children":
  1418. {
  1419. "speed_support_infill":
  1420. {
  1421. "label": "Support Infill Speed",
  1422. "description": "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability.",
  1423. "unit": "mm/s",
  1424. "type": "float",
  1425. "default_value": 60,
  1426. "minimum_value": "0.1",
  1427. "maximum_value": "299792458000",
  1428. "maximum_value_warning": "150",
  1429. "value": "speed_support",
  1430. "enabled": "support_enable",
  1431. "settable_per_mesh": false,
  1432. "settable_per_extruder": false
  1433. },
  1434. "speed_support_roof":
  1435. {
  1436. "label": "Support Roof Speed",
  1437. "description": "The speed at which the roofs of support are printed. Printing the support roof at lower speeds can improve overhang quality.",
  1438. "unit": "mm/s",
  1439. "type": "float",
  1440. "default_value": 40,
  1441. "minimum_value": "0.1",
  1442. "maximum_value": "299792458000",
  1443. "maximum_value_warning": "150",
  1444. "enabled": "support_roof_enable and support_enable",
  1445. "value": "speed_support / 1.5",
  1446. "settable_per_mesh": false,
  1447. "settable_per_extruder": false
  1448. }
  1449. }
  1450. },
  1451. "speed_prime_tower":
  1452. {
  1453. "label": "Prime Tower Speed",
  1454. "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.",
  1455. "type": "float",
  1456. "unit": "mm/s",
  1457. "enabled": "prime_tower_enable",
  1458. "default_value": 60,
  1459. "value": "speed_print",
  1460. "minimum_value": "0.1",
  1461. "maximum_value_warning": "150",
  1462. "settable_per_mesh": false,
  1463. "settable_per_extruder": true
  1464. }
  1465. }
  1466. },
  1467. "speed_travel":
  1468. {
  1469. "label": "Travel Speed",
  1470. "description": "The speed at which travel moves are made.",
  1471. "unit": "mm/s",
  1472. "type": "float",
  1473. "default_value": 120,
  1474. "minimum_value": "0.1",
  1475. "maximum_value": "299792458000",
  1476. "maximum_value_warning": "300",
  1477. "value": "speed_print if magic_spiralize else 120",
  1478. "settable_per_mesh": false,
  1479. "settable_per_extruder": true
  1480. },
  1481. "speed_layer_0": {
  1482. "label": "Initial Layer Speed",
  1483. "description": "The print speed for the initial layer. A lower value is advised to improve adhesion to the build plate.",
  1484. "unit": "mm/s",
  1485. "type": "float",
  1486. "default_value": 30,
  1487. "minimum_value": "0.1",
  1488. "maximum_value": "299792458000",
  1489. "maximum_value_warning": "300",
  1490. "settable_per_mesh": true
  1491. },
  1492. "skirt_speed": {
  1493. "label": "Skirt Speed",
  1494. "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 at a different speed.",
  1495. "unit": "mm/s",
  1496. "type": "float",
  1497. "default_value": 30,
  1498. "minimum_value": "0.1",
  1499. "maximum_value": "299792458000",
  1500. "maximum_value_warning": "300",
  1501. "value": "speed_layer_0",
  1502. "settable_per_mesh": false,
  1503. "settable_per_extruder": true
  1504. },
  1505. "speed_slowdown_layers":
  1506. {
  1507. "label": "Number of Slower Layers",
  1508. "description": "The first few layers are printed slower than the rest of the object, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers.",
  1509. "type": "int",
  1510. "default_value": 2,
  1511. "minimum_value": "0",
  1512. "maximum_value": "299792458000",
  1513. "maximum_value_warning": "300",
  1514. "settable_per_mesh": false,
  1515. "settable_per_extruder": false
  1516. },
  1517. "acceleration_enabled": {
  1518. "label": "Enable Acceleration Control",
  1519. "description": "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality.",
  1520. "type": "bool",
  1521. "default_value": false,
  1522. "settable_per_mesh": false,
  1523. "settable_per_extruder": false
  1524. },
  1525. "acceleration_print": {
  1526. "label": "Print Acceleration",
  1527. "description": "The acceleration with which printing happens.",
  1528. "unit": "mm/s²",
  1529. "type": "float",
  1530. "minimum_value": "0.1",
  1531. "minimum_value_warning": "100",
  1532. "maximum_value_warning": "10000",
  1533. "default_value": 3000,
  1534. "enabled": "acceleration_enabled",
  1535. "settable_per_mesh": true,
  1536. "children": {
  1537. "acceleration_infill": {
  1538. "label": "Infill Acceleration",
  1539. "description": "The acceleration with which infill is printed.",
  1540. "unit": "mm/s²",
  1541. "type": "float",
  1542. "minimum_value": "0.1",
  1543. "minimum_value_warning": "100",
  1544. "maximum_value_warning": "10000",
  1545. "default_value": 3000,
  1546. "value": "acceleration_print",
  1547. "enabled": "acceleration_enabled",
  1548. "settable_per_mesh": true
  1549. },
  1550. "acceleration_wall": {
  1551. "label": "Wall Acceleration",
  1552. "description": "The acceleration with which the walls are printed.",
  1553. "unit": "mm/s²",
  1554. "type": "float",
  1555. "minimum_value": "0.1",
  1556. "minimum_value_warning": "100",
  1557. "maximum_value_warning": "10000",
  1558. "default_value": 3000,
  1559. "value": "acceleration_print",
  1560. "enabled": "acceleration_enabled",
  1561. "settable_per_mesh": true,
  1562. "children": {
  1563. "acceleration_wall_0": {
  1564. "label": "Outer Wall Acceleration",
  1565. "description": "The acceleration with which the outermost walls are printed.",
  1566. "unit": "mm/s²",
  1567. "type": "float",
  1568. "minimum_value": "0.1",
  1569. "minimum_value_warning": "100",
  1570. "maximum_value_warning": "10000",
  1571. "default_value": 3000,
  1572. "value": "acceleration_wall",
  1573. "enabled": "acceleration_enabled",
  1574. "settable_per_mesh": true
  1575. },
  1576. "acceleration_wall_x": {
  1577. "label": "Inner Wall Acceleration",
  1578. "description": "The acceleration with which all inner walls are printed.",
  1579. "unit": "mm/s²",
  1580. "type": "float",
  1581. "minimum_value": "0.1",
  1582. "minimum_value_warning": "100",
  1583. "maximum_value_warning": "10000",
  1584. "default_value": 3000,
  1585. "value": "acceleration_wall",
  1586. "enabled": "acceleration_enabled",
  1587. "settable_per_mesh": true
  1588. }
  1589. }
  1590. },
  1591. "acceleration_topbottom": {
  1592. "label": "Top/Bottom Acceleration",
  1593. "description": "The acceleration with which top/bottom layers are printed.",
  1594. "unit": "mm/s²",
  1595. "type": "float",
  1596. "minimum_value": "0.1",
  1597. "minimum_value_warning": "100",
  1598. "maximum_value_warning": "10000",
  1599. "default_value": 3000,
  1600. "value": "acceleration_print",
  1601. "enabled": "acceleration_enabled",
  1602. "settable_per_mesh": true
  1603. },
  1604. "acceleration_support": {
  1605. "label": "Support Acceleration",
  1606. "description": "The acceleration with which the support structure is printed.",
  1607. "unit": "mm/s²",
  1608. "type": "float",
  1609. "minimum_value": "0.1",
  1610. "minimum_value_warning": "100",
  1611. "maximum_value_warning": "10000",
  1612. "default_value": 3000,
  1613. "value": "acceleration_print",
  1614. "enabled": "acceleration_enabled and support_enable",
  1615. "settable_per_mesh": false,
  1616. "settable_per_extruder": false,
  1617. "children": {
  1618. "acceleration_support_infill": {
  1619. "label": "Support Infill Acceleration",
  1620. "description": "The acceleration with which the infill of support is printed.",
  1621. "unit": "mm/s²",
  1622. "type": "float",
  1623. "default_value": 3000,
  1624. "value": "acceleration_support",
  1625. "minimum_value": "0.1",
  1626. "minimum_value_warning": "100",
  1627. "maximum_value_warning": "10000",
  1628. "enabled": "acceleration_enabled and support_enable",
  1629. "settable_per_mesh": false,
  1630. "settable_per_extruder": false
  1631. },
  1632. "acceleration_support_roof": {
  1633. "label": "Support Roof Acceleration",
  1634. "description": "The acceleration with which the roofs of support are printed. Printing the support roof at lower accelerations can improve overhang quality.",
  1635. "unit": "mm/s²",
  1636. "type": "float",
  1637. "default_value": 3000,
  1638. "value": "acceleration_support",
  1639. "minimum_value": "0.1",
  1640. "minimum_value_warning": "100",
  1641. "maximum_value_warning": "10000",
  1642. "enabled": "acceleration_enabled and support_roof_enable and support_enable",
  1643. "settable_per_mesh": false,
  1644. "settable_per_extruder": false
  1645. }
  1646. }
  1647. },
  1648. "acceleration_prime_tower": {
  1649. "label": "Prime Tower Acceleration",
  1650. "description": "The acceleration with which the prime tower is printed.",
  1651. "unit": "mm/s²",
  1652. "type": "float",
  1653. "minimum_value": "0.1",
  1654. "minimum_value_warning": "100",
  1655. "maximum_value_warning": "10000",
  1656. "default_value": 3000,
  1657. "value": "acceleration_print",
  1658. "enabled": "prime_tower_enable and acceleration_enabled",
  1659. "settable_per_mesh": false
  1660. }
  1661. }
  1662. },
  1663. "acceleration_travel": {
  1664. "label": "Travel Acceleration",
  1665. "description": "The acceleration with which travel moves are made.",
  1666. "unit": "mm/s²",
  1667. "type": "float",
  1668. "default_value": 5000,
  1669. "minimum_value": "0.1",
  1670. "minimum_value_warning": "100",
  1671. "maximum_value_warning": "10000",
  1672. "value": "acceleration_print if magic_spiralize else 5000",
  1673. "enabled": "acceleration_enabled",
  1674. "settable_per_mesh": false
  1675. },
  1676. "acceleration_layer_0": {
  1677. "label": "Initial Layer Acceleration",
  1678. "description": "The acceleration for the initial layer.",
  1679. "unit": "mm/s²",
  1680. "type": "float",
  1681. "default_value": 3000,
  1682. "value": "acceleration_print",
  1683. "minimum_value": "0.1",
  1684. "minimum_value_warning": "100",
  1685. "maximum_value_warning": "10000",
  1686. "enabled": "acceleration_enabled",
  1687. "settable_per_mesh": true
  1688. },
  1689. "acceleration_skirt": {
  1690. "label": "Skirt Acceleration",
  1691. "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 at a different acceleration.",
  1692. "unit": "mm/s²",
  1693. "type": "float",
  1694. "default_value": 3000,
  1695. "value": "acceleration_layer_0",
  1696. "minimum_value": "0.1",
  1697. "minimum_value_warning": "100",
  1698. "maximum_value_warning": "10000",
  1699. "enabled": "acceleration_enabled",
  1700. "settable_per_mesh": false
  1701. },
  1702. "jerk_enabled": {
  1703. "label": "Enable Jerk Control",
  1704. "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.",
  1705. "type": "bool",
  1706. "default_value": false,
  1707. "settable_per_mesh": false,
  1708. "settable_per_extruder": false
  1709. },
  1710. "jerk_print": {
  1711. "label": "Print Jerk",
  1712. "description": "The maximum instantaneous velocity change of the print head.",
  1713. "unit": "mm/s",
  1714. "type": "float",
  1715. "minimum_value": "0.1",
  1716. "minimum_value_warning": "5",
  1717. "maximum_value_warning": "50",
  1718. "default_value": 20,
  1719. "enabled": "jerk_enabled",
  1720. "settable_per_mesh": true,
  1721. "children": {
  1722. "jerk_infill": {
  1723. "label": "Infill Jerk",
  1724. "description": "The maximum instantaneous velocity change with which infill is printed.",
  1725. "unit": "mm/s",
  1726. "type": "float",
  1727. "minimum_value": "0.1",
  1728. "minimum_value_warning": "5",
  1729. "maximum_value_warning": "50",
  1730. "default_value": 20,
  1731. "value": "jerk_print",
  1732. "enabled": "jerk_enabled",
  1733. "settable_per_mesh": true
  1734. },
  1735. "jerk_wall": {
  1736. "label": "Wall Jerk",
  1737. "description": "The maximum instantaneous velocity change with which the walls are printed.",
  1738. "unit": "mm/s",
  1739. "type": "float",
  1740. "minimum_value": "0.1",
  1741. "minimum_value_warning": "5",
  1742. "maximum_value_warning": "50",
  1743. "default_value": 20,
  1744. "value": "jerk_print",
  1745. "enabled": "jerk_enabled",
  1746. "settable_per_mesh": true,
  1747. "children": {
  1748. "jerk_wall_0": {
  1749. "label": "Outer Wall Jerk",
  1750. "description": "The maximum instantaneous velocity change with which the outermost walls are printed.",
  1751. "unit": "mm/s",
  1752. "type": "float",
  1753. "minimum_value": "0.1",
  1754. "minimum_value_warning": "5",
  1755. "maximum_value_warning": "50",
  1756. "default_value": 20,
  1757. "value": "jerk_wall",
  1758. "enabled": "jerk_enabled",
  1759. "settable_per_mesh": true
  1760. },
  1761. "jerk_wall_x": {
  1762. "label": "Inner Wall Jerk",
  1763. "description": "The maximum instantaneous velocity change with which all inner walls are printed.",
  1764. "unit": "mm/s",
  1765. "type": "float",
  1766. "minimum_value": "0.1",
  1767. "minimum_value_warning": "5",
  1768. "maximum_value_warning": "50",
  1769. "default_value": 20,
  1770. "value": "jerk_wall",
  1771. "enabled": "jerk_enabled",
  1772. "settable_per_mesh": true
  1773. }
  1774. }
  1775. },
  1776. "jerk_topbottom": {
  1777. "label": "Top/Bottom Jerk",
  1778. "description": "The maximum instantaneous velocity change with which top/bottom layers are printed.",
  1779. "unit": "mm/s",
  1780. "type": "float",
  1781. "minimum_value": "0.1",
  1782. "minimum_value_warning": "5",
  1783. "maximum_value_warning": "50",
  1784. "default_value": 20,
  1785. "value": "jerk_print",
  1786. "enabled": "jerk_enabled",
  1787. "settable_per_mesh": true
  1788. },
  1789. "jerk_support": {
  1790. "label": "Support Jerk",
  1791. "description": "The maximum instantaneous velocity change with which the support structure is printed.",
  1792. "unit": "mm/s",
  1793. "type": "float",
  1794. "minimum_value": "0.1",
  1795. "minimum_value_warning": "5",
  1796. "maximum_value_warning": "50",
  1797. "default_value": 20,
  1798. "value": "jerk_print",
  1799. "enabled": "jerk_enabled and support_enable",
  1800. "settable_per_mesh": false,
  1801. "settable_per_extruder": false,
  1802. "children": {
  1803. "jerk_support_infill": {
  1804. "label": "Support Infill Jerk",
  1805. "description": "The maximum instantaneous velocity change with which the infill of support is printed.",
  1806. "unit": "mm/s",
  1807. "type": "float",
  1808. "default_value": 20,
  1809. "value": "jerk_support",
  1810. "minimum_value": "0.1",
  1811. "minimum_value_warning": "5",
  1812. "maximum_value_warning": "50",
  1813. "enabled": "jerk_enabled and support_enable",
  1814. "settable_per_mesh": false,
  1815. "settable_per_extruder": false
  1816. },
  1817. "jerk_support_roof": {
  1818. "label": "Support Roof Jerk",
  1819. "description": "The maximum instantaneous velocity change with which the roofs of support are printed.",
  1820. "unit": "mm/s",
  1821. "type": "float",
  1822. "default_value": 20,
  1823. "value": "jerk_support",
  1824. "minimum_value": "0.1",
  1825. "minimum_value_warning": "5",
  1826. "maximum_value_warning": "50",
  1827. "enabled": "jerk_enabled and support_roof_enable and support_enable",
  1828. "settable_per_mesh": false,
  1829. "settable_per_extruder": false
  1830. }
  1831. }
  1832. },
  1833. "jerk_prime_tower": {
  1834. "label": "Prime Tower Jerk",
  1835. "description": "The maximum instantaneous velocity change with which the prime tower is printed.",
  1836. "unit": "mm/s",
  1837. "type": "float",
  1838. "minimum_value": "0.1",
  1839. "minimum_value_warning": "5",
  1840. "maximum_value_warning": "50",
  1841. "default_value": 20,
  1842. "value": "jerk_print",
  1843. "enabled": "prime_tower_enable and jerk_enabled",
  1844. "settable_per_mesh": false
  1845. }
  1846. }
  1847. },
  1848. "jerk_travel": {
  1849. "label": "Travel Jerk",
  1850. "description": "The maximum instantaneous velocity change with which travel moves are made.",
  1851. "unit": "mm/s",
  1852. "type": "float",
  1853. "default_value": 30,
  1854. "minimum_value": "0.1",
  1855. "minimum_value_warning": "5",
  1856. "maximum_value_warning": "50",
  1857. "value": "jerk_print if magic_spiralize else 30",
  1858. "enabled": "jerk_enabled",
  1859. "settable_per_mesh": false
  1860. },
  1861. "jerk_layer_0": {
  1862. "label": "Initial Layer Jerk",
  1863. "description": "The print maximum instantaneous velocity change for the initial layer.",
  1864. "unit": "mm/s",
  1865. "type": "float",
  1866. "default_value": 20,
  1867. "value": "jerk_print",
  1868. "minimum_value": "0.1",
  1869. "minimum_value_warning": "5",
  1870. "maximum_value_warning": "50",
  1871. "enabled": "jerk_enabled",
  1872. "settable_per_mesh": true
  1873. },
  1874. "jerk_skirt": {
  1875. "label": "Skirt Jerk",
  1876. "description": "The maximum instantaneous velocity change with which the skirt and brim are printed.",
  1877. "unit": "mm/s",
  1878. "type": "float",
  1879. "default_value": 20,
  1880. "minimum_value": "0.1",
  1881. "minimum_value_warning": "5",
  1882. "maximum_value_warning": "50",
  1883. "value": "jerk_layer_0",
  1884. "enabled": "jerk_enabled",
  1885. "settable_per_mesh": false
  1886. }
  1887. }
  1888. },
  1889. "travel":
  1890. {
  1891. "label": "Travel",
  1892. "icon": "category_travel",
  1893. "description": "travel",
  1894. "type": "category",
  1895. "children":
  1896. {
  1897. "retraction_combing":
  1898. {
  1899. "label": "Combing Mode",
  1900. "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. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only.",
  1901. "type": "enum",
  1902. "options":
  1903. {
  1904. "off": "Off",
  1905. "all": "All",
  1906. "noskin": "No Skin"
  1907. },
  1908. "default_value": "all",
  1909. "settable_per_mesh": true
  1910. },
  1911. "travel_avoid_other_parts":
  1912. {
  1913. "label": "Avoid Printed Parts when Traveling",
  1914. "description": "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled.",
  1915. "type": "bool",
  1916. "default_value": true,
  1917. "enabled": "retraction_combing != \"off\"",
  1918. "settable_per_mesh": false,
  1919. "settable_per_extruder": true
  1920. },
  1921. "travel_avoid_distance":
  1922. {
  1923. "label": "Travel Avoid Distance",
  1924. "description": "The distance between the nozzle and already printed parts when avoiding during travel moves.",
  1925. "unit": "mm",
  1926. "type": "float",
  1927. "default_value": 0.625,
  1928. "value": "machine_nozzle_tip_outer_diameter / 2 * 1.25",
  1929. "minimum_value": "0",
  1930. "maximum_value_warning": "machine_nozzle_tip_outer_diameter * 5",
  1931. "enabled": "retraction_combing != \"off\" and travel_avoid_other_parts",
  1932. "settable_per_mesh": false,
  1933. "settable_per_extruder": true
  1934. }
  1935. }
  1936. },
  1937. "cooling":
  1938. {
  1939. "label": "Cooling",
  1940. "icon": "category_cool",
  1941. "description": "Cooling",
  1942. "type": "category",
  1943. "children":
  1944. {
  1945. "cool_fan_enabled":
  1946. {
  1947. "label": "Enable Cooling Fans",
  1948. "description": "Enables the cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs.",
  1949. "type": "bool",
  1950. "default_value": true,
  1951. "settable_per_mesh": false,
  1952. "settable_per_extruder": true
  1953. },
  1954. "cool_fan_speed":
  1955. {
  1956. "label": "Fan Speed",
  1957. "description": "The speed at which the cooling fans spin.",
  1958. "unit": "%",
  1959. "type": "float",
  1960. "minimum_value": "0",
  1961. "maximum_value": "100",
  1962. "default_value": 100,
  1963. "value": "100.0 if cool_fan_enabled else 0.0",
  1964. "enabled": "cool_fan_enabled",
  1965. "settable_per_mesh": false,
  1966. "settable_per_extruder": true,
  1967. "children":
  1968. {
  1969. "cool_fan_speed_min":
  1970. {
  1971. "label": "Regular Fan Speed",
  1972. "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.",
  1973. "unit": "%",
  1974. "type": "float",
  1975. "minimum_value": "0",
  1976. "maximum_value": "100",
  1977. "value": "cool_fan_speed",
  1978. "default_value": 100,
  1979. "enabled": "cool_fan_enabled",
  1980. "settable_per_mesh": false,
  1981. "settable_per_extruder": true
  1982. },
  1983. "cool_fan_speed_max":
  1984. {
  1985. "label": "Maximum Fan Speed",
  1986. "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.",
  1987. "unit": "%",
  1988. "type": "float",
  1989. "minimum_value": "max(0, cool_fan_speed_min)",
  1990. "maximum_value": "100",
  1991. "default_value": 100,
  1992. "enabled": "cool_fan_enabled",
  1993. "value": "cool_fan_speed",
  1994. "settable_per_mesh": false,
  1995. "settable_per_extruder": true
  1996. }
  1997. }
  1998. },
  1999. "cool_min_layer_time_fan_speed_max":
  2000. {
  2001. "label": "Regular/Maximum Fan Speed Threshold",
  2002. "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.",
  2003. "unit": "s",
  2004. "type": "float",
  2005. "default_value": 10,
  2006. "minimum_value": "cool_min_layer_time",
  2007. "maximum_value_warning": "600",
  2008. "settable_per_mesh": false,
  2009. "settable_per_extruder": true
  2010. },
  2011. "cool_fan_full_at_height":
  2012. {
  2013. "label": "Regular Fan Speed at Height",
  2014. "description": "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from zero to regular fan speed.",
  2015. "unit": "mm",
  2016. "type": "float",
  2017. "default_value": 0.5,
  2018. "value": "0 if adhesion_type == \"raft\" else layer_height_0",
  2019. "minimum_value": "0",
  2020. "maximum_value_warning": "10.0",
  2021. "settable_per_mesh": false,
  2022. "settable_per_extruder": true,
  2023. "children":
  2024. {
  2025. "cool_fan_full_layer":
  2026. {
  2027. "label": "Regular Fan Speed at Layer",
  2028. "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.",
  2029. "type": "int",
  2030. "default_value": 1,
  2031. "minimum_value": "0",
  2032. "maximum_value_warning": "100",
  2033. "value": "max(0, int(round((cool_fan_full_at_height - layer_height_0) / layer_height, 0)))",
  2034. "settable_per_mesh": false,
  2035. "settable_per_extruder": true
  2036. }
  2037. }
  2038. },
  2039. "cool_min_layer_time":
  2040. {
  2041. "label": "Minimum Layer Time",
  2042. "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.",
  2043. "unit": "s",
  2044. "type": "float",
  2045. "default_value": 5,
  2046. "minimum_value": "0",
  2047. "maximum_value_warning": "600",
  2048. "settable_per_mesh": false,
  2049. "settable_per_extruder": true
  2050. },
  2051. "cool_min_speed":
  2052. {
  2053. "label": "Minimum Speed",
  2054. "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.",
  2055. "unit": "mm/s",
  2056. "type": "float",
  2057. "default_value": 10,
  2058. "minimum_value": "0",
  2059. "maximum_value_warning": "100",
  2060. "settable_per_mesh": false,
  2061. "settable_per_extruder": true
  2062. },
  2063. "cool_lift_head":
  2064. {
  2065. "label": "Lift Head",
  2066. "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.",
  2067. "type": "bool",
  2068. "default_value": false,
  2069. "settable_per_mesh": false,
  2070. "settable_per_extruder": true
  2071. }
  2072. }
  2073. },
  2074. "support":
  2075. {
  2076. "label": "Support",
  2077. "type": "category",
  2078. "icon": "category_support",
  2079. "description": "Support",
  2080. "children":
  2081. {
  2082. "support_enable":
  2083. {
  2084. "label": "Enable Support",
  2085. "description": "Enable support structures. These structures support parts of the model with severe overhangs.",
  2086. "type": "bool",
  2087. "default_value": false,
  2088. "settable_per_mesh": true
  2089. },
  2090. "support_type":
  2091. {
  2092. "label": "Support Placement",
  2093. "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.",
  2094. "type": "enum",
  2095. "options":
  2096. {
  2097. "buildplate": "Touching Buildplate",
  2098. "everywhere": "Everywhere"
  2099. },
  2100. "default_value": "everywhere",
  2101. "enabled": "support_enable",
  2102. "settable_per_mesh": false,
  2103. "settable_per_extruder": false
  2104. },
  2105. "support_angle":
  2106. {
  2107. "label": "Support Overhang Angle",
  2108. "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.",
  2109. "unit": "°",
  2110. "type": "float",
  2111. "minimum_value": "0",
  2112. "maximum_value": "90",
  2113. "default_value": 50,
  2114. "enabled": "support_enable",
  2115. "settable_per_mesh": true
  2116. },
  2117. "support_pattern":
  2118. {
  2119. "label": "Support Pattern",
  2120. "description": "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support.",
  2121. "type": "enum",
  2122. "options":
  2123. {
  2124. "lines": "Lines",
  2125. "grid": "Grid",
  2126. "triangles": "Triangles",
  2127. "concentric": "Concentric",
  2128. "zigzag": "Zig Zag"
  2129. },
  2130. "default_value": "zigzag",
  2131. "enabled": "support_enable",
  2132. "settable_per_mesh": false,
  2133. "settable_per_extruder": false
  2134. },
  2135. "support_connect_zigzags":
  2136. {
  2137. "label": "Connect Support ZigZags",
  2138. "description": "Connect the ZigZags. This will increase the strength of the zig zag support structure.",
  2139. "type": "bool",
  2140. "default_value": true,
  2141. "enabled": "support_enable and (support_pattern == \"zigzag\")",
  2142. "settable_per_mesh": false,
  2143. "settable_per_extruder": false
  2144. },
  2145. "support_infill_rate":
  2146. {
  2147. "label": "Support Density",
  2148. "description": "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove.",
  2149. "unit": "%",
  2150. "type": "float",
  2151. "minimum_value": "0",
  2152. "maximum_value_warning": "100",
  2153. "default_value": 15,
  2154. "enabled": "support_enable",
  2155. "settable_per_mesh": false,
  2156. "settable_per_extruder": false,
  2157. "children": {
  2158. "support_line_distance":
  2159. {
  2160. "label": "Support Line Distance",
  2161. "description": "Distance between the printed support structure lines. This setting is calculated by the support density.",
  2162. "unit": "mm",
  2163. "type": "float",
  2164. "minimum_value": "0",
  2165. "default_value": 2.66,
  2166. "enabled": "support_enable",
  2167. "value": "(support_line_width * 100) / support_infill_rate * (2 if support_pattern == \"grid\" else (3 if support_pattern == \"triangles\" else 1))",
  2168. "settable_per_mesh": false,
  2169. "settable_per_extruder": false
  2170. }
  2171. }
  2172. },
  2173. "support_z_distance":
  2174. {
  2175. "label": "Support Z Distance",
  2176. "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 down to a multiple of the layer height.",
  2177. "unit": "mm",
  2178. "type": "float",
  2179. "minimum_value": "0",
  2180. "maximum_value_warning": "10",
  2181. "default_value": 0.15,
  2182. "enabled": "support_enable",
  2183. "settable_per_mesh": true,
  2184. "children":
  2185. {
  2186. "support_top_distance":
  2187. {
  2188. "label": "Support Top Distance",
  2189. "description": "Distance from the top of the support to the print.",
  2190. "unit": "mm",
  2191. "minimum_value": "0",
  2192. "maximum_value_warning": "10",
  2193. "default_value": 0.15,
  2194. "type": "float",
  2195. "enabled": "support_enable",
  2196. "value": "support_z_distance",
  2197. "settable_per_mesh": true
  2198. },
  2199. "support_bottom_distance":
  2200. {
  2201. "label": "Support Bottom Distance",
  2202. "description": "Distance from the print to the bottom of the support.",
  2203. "unit": "mm",
  2204. "minimum_value": "0",
  2205. "maximum_value_warning": "10",
  2206. "default_value": 0.1,
  2207. "value": "0.1 if support_type == 'everywhere' else 0",
  2208. "type": "float",
  2209. "enabled": "support_enable and support_type == 'everywhere'",
  2210. "settable_per_mesh": true
  2211. }
  2212. }
  2213. },
  2214. "support_xy_distance":
  2215. {
  2216. "label": "Support X/Y Distance",
  2217. "description": "Distance of the support structure from the print in the X/Y directions.",
  2218. "unit": "mm",
  2219. "type": "float",
  2220. "minimum_value": "0",
  2221. "maximum_value_warning": "10",
  2222. "default_value": 0.7,
  2223. "enabled": "support_enable",
  2224. "settable_per_mesh": true
  2225. },
  2226. "support_xy_overrides_z": {
  2227. "label": "Support Distance Priority",
  2228. "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.",
  2229. "type": "enum",
  2230. "options": {
  2231. "xy_overrides_z": "X/Y overrides Z",
  2232. "z_overrides_xy": "Z overrides X/Y"
  2233. },
  2234. "default_value": "z_overrides_xy",
  2235. "enabled": "support_enable",
  2236. "settable_per_mesh": true
  2237. },
  2238. "support_xy_distance_overhang": {
  2239. "label": "Minimum Support X/Y Distance",
  2240. "description": "Distance of the support structure from the overhang in the X/Y directions. ",
  2241. "unit": "mm",
  2242. "type": "float",
  2243. "minimum_value": "0",
  2244. "maximum_value_warning": "10",
  2245. "default_value": 0.2,
  2246. "value": "machine_nozzle_size / 2",
  2247. "enabled": "support_enable and support_xy_overrides_z=='z_overrides_xy'",
  2248. "settable_per_mesh": true
  2249. },
  2250. "support_bottom_stair_step_height":
  2251. {
  2252. "label": "Support Stair Step Height",
  2253. "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.",
  2254. "unit": "mm",
  2255. "type": "float",
  2256. "default_value": 0.3,
  2257. "minimum_value": "0",
  2258. "maximum_value_warning": "1.0",
  2259. "enabled": "support_enable",
  2260. "settable_per_mesh": true
  2261. },
  2262. "support_join_distance":
  2263. {
  2264. "label": "Support Join Distance",
  2265. "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.",
  2266. "unit": "mm",
  2267. "type": "float",
  2268. "default_value": 2.0,
  2269. "minimum_value_warning": "0",
  2270. "maximum_value_warning": "10",
  2271. "enabled": "support_enable",
  2272. "settable_per_mesh": true
  2273. },
  2274. "support_offset":
  2275. {
  2276. "label": "Support Horizontal Expansion",
  2277. "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.",
  2278. "unit": "mm",
  2279. "type": "float",
  2280. "default_value": 0.2,
  2281. "minimum_value_warning": "-0.5",
  2282. "maximum_value_warning": "5.0",
  2283. "enabled": "support_enable",
  2284. "settable_per_mesh": true
  2285. },
  2286. "support_area_smoothing":
  2287. {
  2288. "label": "Support Area Smoothing",
  2289. "description": "Maximum distance in the X/Y directions of a line segment which is to be smoothed out. Ragged lines are introduced by the join distance and support bridge, which cause the machine to resonate. Smoothing the support areas won't cause them to break with the constraints, except it might change the overhang.",
  2290. "unit": "mm",
  2291. "type": "float",
  2292. "default_value": 0.6,
  2293. "minimum_value": "0",
  2294. "maximum_value_warning": "1.0",
  2295. "enabled": "support_enable",
  2296. "settable_per_mesh": true
  2297. },
  2298. "support_roof_enable":
  2299. {
  2300. "label": "Enable Support Roof",
  2301. "description": "Generate a dense top skin at the top of the support on which the model is printed.",
  2302. "type": "bool",
  2303. "default_value": false,
  2304. "enabled": "support_enable",
  2305. "settable_per_mesh": true
  2306. },
  2307. "support_roof_height":
  2308. {
  2309. "label": "Support Roof Thickness",
  2310. "description": "The thickness of the support roofs.",
  2311. "unit": "mm",
  2312. "type": "float",
  2313. "default_value": 1,
  2314. "minimum_value": "0",
  2315. "maximum_value_warning": "10",
  2316. "enabled": "support_roof_enable and support_enable",
  2317. "settable_per_mesh": true
  2318. },
  2319. "support_roof_density":
  2320. {
  2321. "label": "Support Roof Density",
  2322. "description": "Adjusts the density of the roof of the support structure. A higher value results in better overhangs, but the supports are harder to remove.",
  2323. "unit": "%",
  2324. "type": "float",
  2325. "default_value": 100,
  2326. "minimum_value": "0",
  2327. "maximum_value_warning": "100",
  2328. "enabled":"support_roof_enable and support_enable",
  2329. "settable_per_mesh": false,
  2330. "settable_per_extruder": false,
  2331. "children":
  2332. {
  2333. "support_roof_line_distance":
  2334. {
  2335. "label": "Support Roof Line Distance",
  2336. "description": "Distance between the printed support roof lines. This setting is calculated by the support roof Density, but can be adjusted separately.",
  2337. "unit": "mm",
  2338. "type": "float",
  2339. "default_value": 0.4,
  2340. "minimum_value": "0",
  2341. "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))",
  2342. "enabled": "support_roof_enable and support_enable",
  2343. "settable_per_mesh": false,
  2344. "settable_per_extruder": false
  2345. }
  2346. }
  2347. },
  2348. "support_roof_pattern":
  2349. {
  2350. "label": "Support Roof Pattern",
  2351. "description": "The pattern with which the top of the support is printed.",
  2352. "type": "enum",
  2353. "options":
  2354. {
  2355. "lines": "Lines",
  2356. "grid": "Grid",
  2357. "triangles": "Triangles",
  2358. "concentric": "Concentric",
  2359. "zigzag": "Zig Zag"
  2360. },
  2361. "default_value": "concentric",
  2362. "enabled": "support_roof_enable and support_enable",
  2363. "settable_per_mesh": false,
  2364. "settable_per_extruder": false
  2365. },
  2366. "support_use_towers":
  2367. {
  2368. "label": "Use Towers",
  2369. "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.",
  2370. "type": "bool",
  2371. "default_value": true,
  2372. "enabled": "support_enable",
  2373. "settable_per_mesh": true
  2374. },
  2375. "support_tower_diameter":
  2376. {
  2377. "label": "Tower Diameter",
  2378. "description": "The diameter of a special tower.",
  2379. "unit": "mm",
  2380. "type": "float",
  2381. "default_value": 3.0,
  2382. "minimum_value": "0",
  2383. "maximum_value_warning": "10",
  2384. "enabled": "support_enable and support_use_towers",
  2385. "settable_per_mesh": true
  2386. },
  2387. "support_minimal_diameter":
  2388. {
  2389. "label": "Minimum Diameter",
  2390. "description": "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower.",
  2391. "unit": "mm",
  2392. "type": "float",
  2393. "default_value": 3.0,
  2394. "minimum_value": "0",
  2395. "maximum_value_warning": "10",
  2396. "maximum_value": "support_tower_diameter",
  2397. "enabled": "support_enable and support_use_towers",
  2398. "settable_per_mesh": true
  2399. },
  2400. "support_tower_roof_angle":
  2401. {
  2402. "label": "Tower Roof Angle",
  2403. "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.",
  2404. "unit": "°",
  2405. "type": "int",
  2406. "minimum_value": "0",
  2407. "maximum_value": "90",
  2408. "default_value": 65,
  2409. "enabled": "support_enable and support_use_towers",
  2410. "settable_per_mesh": true
  2411. }
  2412. }
  2413. },
  2414. "platform_adhesion":
  2415. {
  2416. "label": "Platform Adhesion",
  2417. "type": "category",
  2418. "icon": "category_adhesion",
  2419. "description": "Adhesion",
  2420. "children":
  2421. {
  2422. "extruder_prime_pos_x":
  2423. {
  2424. "label": "Extruder Prime X Position",
  2425. "description": "The X coordinate of the position where the nozzle primes at the start of printing.",
  2426. "type": "float",
  2427. "unit": "mm",
  2428. "default_value": 0,
  2429. "minimum_value_warning": "0",
  2430. "maximum_value_warning": "machine_width",
  2431. "settable_per_mesh": false,
  2432. "settable_per_extruder": true
  2433. },
  2434. "extruder_prime_pos_y":
  2435. {
  2436. "label": "Extruder Prime Y Position",
  2437. "description": "The Y coordinate of the position where the nozzle primes at the start of printing.",
  2438. "type": "float",
  2439. "unit": "mm",
  2440. "default_value": 0,
  2441. "minimum_value_warning": "0",
  2442. "maximum_value_warning": "machine_depth",
  2443. "settable_per_mesh": false,
  2444. "settable_per_extruder": true
  2445. },
  2446. "adhesion_type":
  2447. {
  2448. "label": "Platform Adhesion Type",
  2449. "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 object to prevent warping. Raft adds a thick grid with a roof below the object. Skirt is a line printed around the object, but not connected to the model.",
  2450. "type": "enum",
  2451. "options":
  2452. {
  2453. "skirt": "Skirt",
  2454. "brim": "Brim",
  2455. "raft": "Raft"
  2456. },
  2457. "default_value": "brim",
  2458. "settable_per_mesh": false,
  2459. "settable_per_extruder": false
  2460. },
  2461. "skirt_line_count":
  2462. {
  2463. "label": "Skirt Line Count",
  2464. "description": "Multiple skirt lines help to prime your extrusion better for small objects. Setting this to 0 will disable the skirt.",
  2465. "type": "int",
  2466. "default_value": 1,
  2467. "minimum_value": "0",
  2468. "maximum_value_warning": "10",
  2469. "enabled": "adhesion_type == \"skirt\"",
  2470. "settable_per_mesh": false,
  2471. "settable_per_extruder": true
  2472. },
  2473. "skirt_gap":
  2474. {
  2475. "label": "Skirt Distance",
  2476. "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.",
  2477. "unit": "mm",
  2478. "type": "float",
  2479. "default_value": 3,
  2480. "minimum_value_warning": "0",
  2481. "maximum_value_warning": "100",
  2482. "enabled": "adhesion_type == \"skirt\"",
  2483. "settable_per_mesh": false,
  2484. "settable_per_extruder": true
  2485. },
  2486. "skirt_minimal_length":
  2487. {
  2488. "label": "Skirt Minimum Length",
  2489. "description": "The minimum length of the skirt. If this length is not reached by the skirt line count, more skirt lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored.",
  2490. "unit": "mm",
  2491. "type": "float",
  2492. "default_value": 250,
  2493. "minimum_value": "0",
  2494. "minimum_value_warning": "25",
  2495. "maximum_value_warning": "2500",
  2496. "enabled": "adhesion_type == \"skirt\"",
  2497. "settable_per_mesh": false,
  2498. "settable_per_extruder": true
  2499. },
  2500. "brim_width":
  2501. {
  2502. "label": "Brim Width",
  2503. "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.",
  2504. "type": "float",
  2505. "unit": "mm",
  2506. "default_value": 8.0,
  2507. "minimum_value": "0.0",
  2508. "maximum_value_warning": "100.0",
  2509. "enabled": "adhesion_type == \"brim\"",
  2510. "settable_per_mesh": false,
  2511. "settable_per_extruder": true,
  2512. "children":
  2513. {
  2514. "brim_line_count":
  2515. {
  2516. "label": "Brim Line Count",
  2517. "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.",
  2518. "type": "int",
  2519. "default_value": 20,
  2520. "minimum_value": "0",
  2521. "maximum_value_warning": "300",
  2522. "value": "math.ceil(brim_width / skirt_line_width)",
  2523. "enabled": "adhesion_type == \"brim\"",
  2524. "settable_per_mesh": false,
  2525. "settable_per_extruder": true
  2526. }
  2527. }
  2528. },
  2529. "raft_margin":
  2530. {
  2531. "label": "Raft Extra Margin",
  2532. "description": "If the raft is enabled, this is the extra raft area around the object 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.",
  2533. "unit": "mm",
  2534. "type": "float",
  2535. "default_value": 15,
  2536. "minimum_value_warning": "0",
  2537. "maximum_value_warning": "10",
  2538. "enabled": "adhesion_type == \"raft\""
  2539. },
  2540. "raft_airgap":
  2541. {
  2542. "label": "Raft Air Gap",
  2543. "description": "The gap between the final raft layer and the first layer of the object. Only the first layer is raised by this amount to lower the bonding between the raft layer and the object. Makes it easier to peel off the raft.",
  2544. "unit": "mm",
  2545. "type": "float",
  2546. "default_value": 0.3,
  2547. "minimum_value": "0",
  2548. "maximum_value_warning": "1.0",
  2549. "enabled": "adhesion_type == \"raft\"",
  2550. "settable_per_mesh": false,
  2551. "settable_per_extruder": true
  2552. },
  2553. "layer_0_z_overlap": {
  2554. "label": "Initial Layer Z Overlap",
  2555. "description": "Make the first and second layer of the object 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.",
  2556. "unit": "mm",
  2557. "type": "float",
  2558. "default_value": 0.22,
  2559. "value": "raft_airgap / 2",
  2560. "minimum_value": "0",
  2561. "maximum_value_warning": "layer_height",
  2562. "enabled": "adhesion_type == 'raft'",
  2563. "settable_per_mesh": false,
  2564. "settable_per_extruder": true
  2565. },
  2566. "raft_surface_layers":
  2567. {
  2568. "label": "Raft Top Layers",
  2569. "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the object sits on. 2 layers result in a smoother top surface than 1.",
  2570. "type": "int",
  2571. "default_value": 2,
  2572. "minimum_value": "0",
  2573. "maximum_value_warning": "20",
  2574. "enabled": "adhesion_type == \"raft\"",
  2575. "settable_per_mesh": false,
  2576. "settable_per_extruder": true
  2577. },
  2578. "raft_surface_thickness":
  2579. {
  2580. "label": "Raft Top Layer Thickness",
  2581. "description": "Layer thickness of the top raft layers.",
  2582. "unit": "mm",
  2583. "type": "float",
  2584. "default_value": 0.1,
  2585. "value": "layer_height",
  2586. "minimum_value": "0",
  2587. "maximum_value_warning": "2.0",
  2588. "enabled": "adhesion_type == \"raft\"",
  2589. "settable_per_mesh": false,
  2590. "settable_per_extruder": true
  2591. },
  2592. "raft_surface_line_width":
  2593. {
  2594. "label": "Raft Top Line Width",
  2595. "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.",
  2596. "unit": "mm",
  2597. "type": "float",
  2598. "default_value": 0.4,
  2599. "value": "line_width",
  2600. "minimum_value": "0.0001",
  2601. "maximum_value_warning": "machine_nozzle_size * 2",
  2602. "enabled": "adhesion_type == \"raft\"",
  2603. "settable_per_mesh": false,
  2604. "settable_per_extruder": true
  2605. },
  2606. "raft_surface_line_spacing":
  2607. {
  2608. "label": "Raft Top Spacing",
  2609. "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.",
  2610. "unit": "mm",
  2611. "type": "float",
  2612. "default_value": 0.4,
  2613. "minimum_value": "0.0001",
  2614. "maximum_value_warning": "5.0",
  2615. "enabled": "adhesion_type == \"raft\"",
  2616. "value": "raft_surface_line_width",
  2617. "settable_per_mesh": false,
  2618. "settable_per_extruder": true
  2619. },
  2620. "raft_interface_thickness":
  2621. {
  2622. "label": "Raft Middle Thickness",
  2623. "description": "Layer thickness of the middle raft layer.",
  2624. "unit": "mm",
  2625. "type": "float",
  2626. "default_value": 0.15,
  2627. "value": "layer_height * 1.5",
  2628. "minimum_value": "0",
  2629. "maximum_value_warning": "5.0",
  2630. "enabled": "adhesion_type == \"raft\"",
  2631. "settable_per_mesh": false,
  2632. "settable_per_extruder": true
  2633. },
  2634. "raft_interface_line_width":
  2635. {
  2636. "label": "Raft Middle Line Width",
  2637. "description": "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the bed.",
  2638. "unit": "mm",
  2639. "type": "float",
  2640. "default_value": 0.7,
  2641. "value": "line_width * 2",
  2642. "minimum_value": "0.0001",
  2643. "maximum_value_warning": "machine_nozzle_size * 2",
  2644. "enabled": "adhesion_type == \"raft\"",
  2645. "settable_per_mesh": false,
  2646. "settable_per_extruder": true
  2647. },
  2648. "raft_interface_line_spacing":
  2649. {
  2650. "label": "Raft Middle Spacing",
  2651. "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.",
  2652. "unit": "mm",
  2653. "type": "float",
  2654. "default_value": 0.9,
  2655. "value": "raft_interface_line_width + 0.2",
  2656. "minimum_value": "0",
  2657. "maximum_value_warning": "15.0",
  2658. "enabled": "adhesion_type == \"raft\"",
  2659. "settable_per_mesh": false,
  2660. "settable_per_extruder": true
  2661. },
  2662. "raft_base_thickness":
  2663. {
  2664. "label": "Raft Base Thickness",
  2665. "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer bed.",
  2666. "unit": "mm",
  2667. "type": "float",
  2668. "default_value": 0.3,
  2669. "value": "layer_height_0 * 1.2",
  2670. "minimum_value": "0",
  2671. "maximum_value_warning": "5.0",
  2672. "enabled": "adhesion_type == \"raft\"",
  2673. "settable_per_mesh": false,
  2674. "settable_per_extruder": true
  2675. },
  2676. "raft_base_line_width":
  2677. {
  2678. "label": "Raft Base Line Width",
  2679. "description": "Width of the lines in the base raft layer. These should be thick lines to assist in bed adhesion.",
  2680. "unit": "mm",
  2681. "type": "float",
  2682. "default_value": 0.8,
  2683. "minimum_value": "0.0001",
  2684. "value": "machine_nozzle_size * 2",
  2685. "maximum_value_warning": "machine_nozzle_size * 3",
  2686. "enabled": "adhesion_type == \"raft\"",
  2687. "settable_per_mesh": false,
  2688. "settable_per_extruder": true
  2689. },
  2690. "raft_base_line_spacing":
  2691. {
  2692. "label": "Raft Line Spacing",
  2693. "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.",
  2694. "unit": "mm",
  2695. "type": "float",
  2696. "default_value": 1.6,
  2697. "value": "raft_base_line_width * 2",
  2698. "minimum_value": "0.0001",
  2699. "maximum_value_warning": "100",
  2700. "enabled": "adhesion_type == \"raft\"",
  2701. "settable_per_mesh": false,
  2702. "settable_per_extruder": true
  2703. },
  2704. "raft_speed":
  2705. {
  2706. "label": "Raft Print Speed",
  2707. "description": "The speed at which the raft is printed.",
  2708. "unit": "mm/s",
  2709. "type": "float",
  2710. "default_value": 20,
  2711. "minimum_value": "0.1",
  2712. "maximum_value": "299792458000",
  2713. "maximum_value_warning": "200",
  2714. "enabled": "adhesion_type == \"raft\"",
  2715. "value": "speed_print / 60 * 30",
  2716. "settable_per_mesh": false,
  2717. "settable_per_extruder": true,
  2718. "children":
  2719. {
  2720. "raft_surface_speed":
  2721. {
  2722. "label": "Raft Top Print Speed",
  2723. "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.",
  2724. "unit": "mm/s",
  2725. "type": "float",
  2726. "default_value": 20,
  2727. "minimum_value": "0.1",
  2728. "maximum_value": "299792458000",
  2729. "maximum_value_warning": "100",
  2730. "enabled": "adhesion_type == \"raft\"",
  2731. "value": "raft_speed",
  2732. "settable_per_mesh": false,
  2733. "settable_per_extruder": true
  2734. },
  2735. "raft_interface_speed":
  2736. {
  2737. "label": "Raft Middle Print Speed",
  2738. "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.",
  2739. "unit": "mm/s",
  2740. "type": "float",
  2741. "default_value": 15,
  2742. "value": "raft_speed * 0.75",
  2743. "minimum_value": "0.1",
  2744. "maximum_value": "299792458000",
  2745. "maximum_value_warning": "150",
  2746. "enabled": "adhesion_type == \"raft\"",
  2747. "settable_per_mesh": false,
  2748. "settable_per_extruder": true
  2749. },
  2750. "raft_base_speed":
  2751. {
  2752. "label": "Raft Base Print Speed",
  2753. "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.",
  2754. "unit": "mm/s",
  2755. "type": "float",
  2756. "default_value": 15,
  2757. "minimum_value": "0.1",
  2758. "maximum_value": "299792458000",
  2759. "maximum_value_warning": "200",
  2760. "enabled": "adhesion_type == \"raft\"",
  2761. "value": "0.75 * raft_speed",
  2762. "settable_per_mesh": false,
  2763. "settable_per_extruder": true
  2764. }
  2765. }
  2766. },
  2767. "raft_acceleration": {
  2768. "label": "Raft Print Acceleration",
  2769. "description": "The acceleration with which the raft is printed.",
  2770. "unit": "mm/s²",
  2771. "type": "float",
  2772. "default_value": 3000,
  2773. "minimum_value": "0.1",
  2774. "minimum_value_warning": "100",
  2775. "maximum_value_warning": "10000",
  2776. "value": "acceleration_print",
  2777. "enabled": "adhesion_type == \"raft\" and acceleration_enabled",
  2778. "settable_per_mesh": false,
  2779. "children": {
  2780. "raft_surface_acceleration": {
  2781. "label": "Raft Top Print Acceleration",
  2782. "description": "The acceleration with which the top raft layers are printed.",
  2783. "unit": "mm/s²",
  2784. "type": "float",
  2785. "default_value": 3000,
  2786. "value": "raft_acceleration",
  2787. "minimum_value": "0.1",
  2788. "minimum_value_warning": "100",
  2789. "maximum_value_warning": "10000",
  2790. "enabled": "adhesion_type == \"raft\" and acceleration_enabled",
  2791. "settable_per_mesh": false
  2792. },
  2793. "raft_interface_acceleration": {
  2794. "label": "Raft Middle Print Acceleration",
  2795. "description": "The acceleration with which the middle raft layer is printed.",
  2796. "unit": "mm/s²",
  2797. "type": "float",
  2798. "default_value": 3000,
  2799. "value": "raft_acceleration",
  2800. "minimum_value": "0.1",
  2801. "minimum_value_warning": "100",
  2802. "maximum_value_warning": "10000",
  2803. "enabled": "adhesion_type == \"raft\" and acceleration_enabled",
  2804. "settable_per_mesh": false
  2805. },
  2806. "raft_base_acceleration": {
  2807. "label": "Raft Base Print Acceleration",
  2808. "description": "The acceleration with which the base raft layer is printed.",
  2809. "unit": "mm/s²",
  2810. "type": "float",
  2811. "default_value": 3000,
  2812. "value": "raft_acceleration",
  2813. "minimum_value": "0.1",
  2814. "minimum_value_warning": "100",
  2815. "maximum_value_warning": "10000",
  2816. "enabled": "adhesion_type == \"raft\" and acceleration_enabled",
  2817. "settable_per_mesh": false
  2818. }
  2819. }
  2820. },
  2821. "raft_jerk": {
  2822. "label": "Raft Print Jerk",
  2823. "description": "The jerk with which the raft is printed.",
  2824. "unit": "mm/s",
  2825. "type": "float",
  2826. "default_value": 20,
  2827. "minimum_value": "0.1",
  2828. "minimum_value_warning": "5",
  2829. "maximum_value_warning": "50",
  2830. "value": "jerk_print",
  2831. "enabled": "adhesion_type == \"raft\" and jerk_enabled",
  2832. "settable_per_mesh": false,
  2833. "children": {
  2834. "raft_surface_jerk": {
  2835. "label": "Raft Top Print Jerk",
  2836. "description": "The jerk with which the top raft layers are printed.",
  2837. "unit": "mm/s",
  2838. "type": "float",
  2839. "default_value": 20,
  2840. "value": "raft_jerk",
  2841. "minimum_value": "0.1",
  2842. "minimum_value_warning": "5",
  2843. "maximum_value_warning": "100",
  2844. "enabled": "adhesion_type == \"raft\" and jerk_enabled",
  2845. "settable_per_mesh": false
  2846. },
  2847. "raft_interface_jerk": {
  2848. "label": "Raft Middle Print Jerk",
  2849. "description": "The jerk with which the middle raft layer is printed.",
  2850. "unit": "mm/s",
  2851. "type": "float",
  2852. "default_value": 20,
  2853. "value": "raft_jerk",
  2854. "minimum_value": "0.1",
  2855. "minimum_value_warning": "5",
  2856. "maximum_value_warning": "50",
  2857. "enabled": "adhesion_type == \"raft\" and jerk_enabled",
  2858. "settable_per_mesh": false
  2859. },
  2860. "raft_base_jerk": {
  2861. "label": "Raft Base Print Jerk",
  2862. "description": "The jerk with which the base raft layer is printed.",
  2863. "unit": "mm/s",
  2864. "type": "float",
  2865. "default_value": 20,
  2866. "value": "raft_jerk",
  2867. "minimum_value": "0.1",
  2868. "minimum_value_warning": "5",
  2869. "maximum_value_warning": "50",
  2870. "enabled": "adhesion_type == \"raft\" and jerk_enabled",
  2871. "settable_per_mesh": false
  2872. }
  2873. }
  2874. },
  2875. "raft_fan_speed": {
  2876. "label": "Raft Fan Speed",
  2877. "description": "The fan speed for the raft.",
  2878. "unit": "%",
  2879. "type": "float",
  2880. "minimum_value": "0",
  2881. "maximum_value": "100",
  2882. "default_value": 0,
  2883. "settable_per_mesh": false,
  2884. "settable_per_extruder": true,
  2885. "enabled": "adhesion_type == \"raft\"",
  2886. "children":
  2887. {
  2888. "raft_surface_fan_speed":
  2889. {
  2890. "label": "Raft Top Fan Speed",
  2891. "description": "The fan speed for the top raft layers.",
  2892. "unit": "%",
  2893. "type": "float",
  2894. "minimum_value": "0",
  2895. "maximum_value": "100",
  2896. "default_value": 0,
  2897. "value": "raft_fan_speed",
  2898. "enabled": "adhesion_type == \"raft\"",
  2899. "settable_per_mesh": false,
  2900. "settable_per_extruder": true
  2901. },
  2902. "raft_interface_fan_speed":
  2903. {
  2904. "label": "Raft Middle Fan Speed",
  2905. "description": "The fan speed for the middle raft layer.",
  2906. "unit": "%",
  2907. "type": "float",
  2908. "minimum_value": "0",
  2909. "maximum_value": "100",
  2910. "default_value": 0,
  2911. "value": "raft_fan_speed",
  2912. "enabled": "adhesion_type == \"raft\"",
  2913. "settable_per_mesh": false,
  2914. "settable_per_extruder": true
  2915. },
  2916. "raft_base_fan_speed":
  2917. {
  2918. "label": "Raft Base Fan Speed",
  2919. "description": "The fan speed for the base raft layer.",
  2920. "unit": "%",
  2921. "type": "float",
  2922. "minimum_value": "0",
  2923. "maximum_value": "100",
  2924. "default_value": 0,
  2925. "value": "raft_fan_speed",
  2926. "enabled": "adhesion_type == \"raft\"",
  2927. "settable_per_mesh": false,
  2928. "settable_per_extruder": true
  2929. }
  2930. }
  2931. }
  2932. }
  2933. },
  2934. "dual":
  2935. {
  2936. "label": "Dual Extrusion",
  2937. "type": "category",
  2938. "icon": "category_dual",
  2939. "description": "Settings used for printing with multiple extruders.",
  2940. "children":
  2941. {
  2942. "adhesion_extruder_nr":
  2943. {
  2944. "label": "Platform Adhesion Extruder",
  2945. "description": "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion.",
  2946. "type": "extruder",
  2947. "default_value": "0",
  2948. "settable_per_mesh": false,
  2949. "settable_per_extruder": false
  2950. },
  2951. "support_extruder_nr":
  2952. {
  2953. "label": "Support Extruder",
  2954. "description": "The extruder train to use for printing the support. This is used in multi-extrusion.",
  2955. "type": "extruder",
  2956. "default_value": "0",
  2957. "enabled": "support_enable",
  2958. "settable_per_mesh": false,
  2959. "settable_per_extruder": false,
  2960. "children": {
  2961. "support_infill_extruder_nr":
  2962. {
  2963. "label": "Support Infill Extruder",
  2964. "description": "The extruder train to use for printing the infill of the support. This is used in multi-extrusion.",
  2965. "type": "extruder",
  2966. "default_value": "0",
  2967. "value": "support_extruder_nr",
  2968. "enabled": "support_enable",
  2969. "settable_per_mesh": false,
  2970. "settable_per_extruder": false
  2971. },
  2972. "support_extruder_nr_layer_0":
  2973. {
  2974. "label": "First Layer Support Extruder",
  2975. "description": "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion.",
  2976. "type": "extruder",
  2977. "default_value": "0",
  2978. "value": "support_extruder_nr",
  2979. "enabled": "support_enable",
  2980. "settable_per_mesh": false,
  2981. "settable_per_extruder": false
  2982. },
  2983. "support_roof_extruder_nr":
  2984. {
  2985. "label": "Support Roof Extruder",
  2986. "description": "The extruder train to use for printing the roof of the support. This is used in multi-extrusion.",
  2987. "type": "extruder",
  2988. "default_value": "0",
  2989. "value": "support_extruder_nr",
  2990. "enabled": "support_enable and support_roof_enable",
  2991. "settable_per_mesh": false,
  2992. "settable_per_extruder": false
  2993. }
  2994. }
  2995. },
  2996. "prime_tower_enable":
  2997. {
  2998. "label": "Enable Prime Tower",
  2999. "description": "Print a tower next to the print which serves to prime the material after each nozzle switch.",
  3000. "type": "bool",
  3001. "default_value": false,
  3002. "settable_per_mesh": false,
  3003. "settable_per_extruder": false
  3004. },
  3005. "prime_tower_size":
  3006. {
  3007. "label": "Prime Tower Size",
  3008. "description": "The width of the prime tower.",
  3009. "type": "float",
  3010. "unit": "mm",
  3011. "enabled": "prime_tower_enable",
  3012. "default_value": 15,
  3013. "value": "15 if prime_tower_enable else 0",
  3014. "minimum_value": "0",
  3015. "maximum_value_warning": "20",
  3016. "settable_per_mesh": false,
  3017. "settable_per_extruder": false
  3018. },
  3019. "prime_tower_position_x":
  3020. {
  3021. "label": "Prime Tower X Position",
  3022. "description": "The x coordinate of the position of the prime tower.",
  3023. "type": "float",
  3024. "unit": "mm",
  3025. "enabled": "prime_tower_enable",
  3026. "default_value": 200,
  3027. "minimum_value_warning": "-1000",
  3028. "maximum_value_warning": "1000",
  3029. "settable_per_mesh": false,
  3030. "settable_per_extruder": false
  3031. },
  3032. "prime_tower_position_y":
  3033. {
  3034. "label": "Prime Tower Y Position",
  3035. "description": "The y coordinate of the position of the prime tower.",
  3036. "type": "float",
  3037. "unit": "mm",
  3038. "enabled": "prime_tower_enable",
  3039. "default_value": 200,
  3040. "minimum_value_warning": "-1000",
  3041. "maximum_value_warning": "1000",
  3042. "settable_per_mesh": false,
  3043. "settable_per_extruder": false
  3044. },
  3045. "prime_tower_flow":
  3046. {
  3047. "label": "Prime Tower Flow",
  3048. "description": "Flow compensation: the amount of material extruded is multiplied by this value.",
  3049. "type": "float",
  3050. "unit": "%",
  3051. "enabled": "prime_tower_enable",
  3052. "default_value": 100,
  3053. "minimum_value": "0.0001",
  3054. "minimum_value_warning": "50",
  3055. "maximum_value_warning": "150",
  3056. "settable_per_mesh": false,
  3057. "settable_per_extruder": true
  3058. },
  3059. "prime_tower_wipe_enabled":
  3060. {
  3061. "label": "Wipe Nozzle on Prime Tower",
  3062. "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.",
  3063. "type": "bool",
  3064. "enabled": "prime_tower_enable",
  3065. "default_value": false,
  3066. "settable_per_mesh": false,
  3067. "settable_per_extruder": false
  3068. },
  3069. "multiple_mesh_overlap":
  3070. {
  3071. "label": "Dual Extrusion Overlap",
  3072. "description": "Make the objects printed with different extruder trains overlap a bit. This makes the different materials bond together better.",
  3073. "type": "float",
  3074. "unit": "mm",
  3075. "default_value": 0.15,
  3076. "minimum_value": "0",
  3077. "maximum_value_warning": "1.0",
  3078. "settable_per_mesh": true
  3079. },
  3080. "ooze_shield_enabled":
  3081. {
  3082. "label": "Enable Ooze Shield",
  3083. "description": "Enable exterior ooze shield. This will create a shell around the object which is likely to wipe a second nozzle if it's at the same height as the first nozzle.",
  3084. "type": "bool",
  3085. "default_value": false,
  3086. "settable_per_mesh": false,
  3087. "settable_per_extruder": false
  3088. },
  3089. "ooze_shield_angle":
  3090. {
  3091. "label": "Ooze Shield Angle",
  3092. "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.",
  3093. "type": "float",
  3094. "unit": "°",
  3095. "enabled": "ooze_shield_enabled",
  3096. "default_value": 60,
  3097. "minimum_value": "0",
  3098. "maximum_value": "90",
  3099. "settable_per_mesh": false,
  3100. "settable_per_extruder": false
  3101. },
  3102. "ooze_shield_dist":
  3103. {
  3104. "label": "Ooze Shield Distance",
  3105. "description": "Distance of the ooze shield from the print, in the X/Y directions.",
  3106. "type": "float",
  3107. "unit": "mm",
  3108. "enabled": "ooze_shield_enabled",
  3109. "default_value": 2,
  3110. "minimum_value": "0",
  3111. "maximum_value_warning": "30",
  3112. "settable_per_mesh": false,
  3113. "settable_per_extruder": false
  3114. }
  3115. }
  3116. },
  3117. "meshfix":
  3118. {
  3119. "label": "Mesh Fixes",
  3120. "type": "category",
  3121. "icon": "category_fixes",
  3122. "description": "category_fixes",
  3123. "children":
  3124. {
  3125. "meshfix_union_all":
  3126. {
  3127. "label": "Union Overlapping Volumes",
  3128. "description": "Ignore the internal geometry arising from overlapping volumes and print the volumes as one. This may cause internal cavities to disappear.",
  3129. "type": "bool",
  3130. "default_value": true,
  3131. "settable_per_mesh": true
  3132. },
  3133. "meshfix_union_all_remove_holes":
  3134. {
  3135. "label": "Remove All Holes",
  3136. "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.",
  3137. "type": "bool",
  3138. "default_value": false,
  3139. "settable_per_mesh": true
  3140. },
  3141. "meshfix_extensive_stitching":
  3142. {
  3143. "label": "Extensive Stitching",
  3144. "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.",
  3145. "type": "bool",
  3146. "default_value": false,
  3147. "settable_per_mesh": true
  3148. },
  3149. "meshfix_keep_open_polygons":
  3150. {
  3151. "label": "Keep Disconnected Faces",
  3152. "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 GCode.",
  3153. "type": "bool",
  3154. "default_value": false,
  3155. "settable_per_mesh": true
  3156. }
  3157. }
  3158. },
  3159. "blackmagic":
  3160. {
  3161. "label": "Special Modes",
  3162. "type": "category",
  3163. "icon": "category_blackmagic",
  3164. "description": "category_blackmagic",
  3165. "children":
  3166. {
  3167. "print_sequence":
  3168. {
  3169. "label": "Print Sequence",
  3170. "description": "Whether to print all objects one layer at a time or to wait for one object 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.",
  3171. "type": "enum",
  3172. "options":
  3173. {
  3174. "all_at_once": "All at Once",
  3175. "one_at_a_time": "One at a Time"
  3176. },
  3177. "default_value": "all_at_once",
  3178. "settable_per_mesh": false,
  3179. "settable_per_extruder": false,
  3180. "settable_per_meshgroup": false
  3181. },
  3182. "infill_mesh":
  3183. {
  3184. "label": "Infill Mesh",
  3185. "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.",
  3186. "type": "bool",
  3187. "default_value": false,
  3188. "settable_per_mesh": true,
  3189. "settable_per_extruder": false,
  3190. "settable_per_meshgroup": false,
  3191. "settable_globally": false
  3192. },
  3193. "infill_mesh_order":
  3194. {
  3195. "label": "Infill Mesh Order",
  3196. "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.",
  3197. "default_value": 0,
  3198. "value": "1 if infill_mesh else 0",
  3199. "minimum_value_warning": "1",
  3200. "maximum_value_warning": "50",
  3201. "type": "int",
  3202. "settable_per_mesh": true,
  3203. "settable_per_extruder": false,
  3204. "settable_per_meshgroup": false,
  3205. "settable_globally": false
  3206. },
  3207. "magic_mesh_surface_mode":
  3208. {
  3209. "label": "Surface Mode",
  3210. "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.",
  3211. "type": "enum",
  3212. "options":
  3213. {
  3214. "normal": "Normal",
  3215. "surface": "Surface",
  3216. "both": "Both"
  3217. },
  3218. "default_value": "normal",
  3219. "settable_per_mesh": true
  3220. },
  3221. "magic_spiralize":
  3222. {
  3223. "label": "Spiralize Outer Contour",
  3224. "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 object into a single walled print with a solid bottom. This feature used to be called Joris in older versions.",
  3225. "type": "bool",
  3226. "default_value": false,
  3227. "settable_per_mesh": true
  3228. }
  3229. }
  3230. },
  3231. "experimental":
  3232. {
  3233. "label": "Experimental Modes",
  3234. "type": "category",
  3235. "icon": "category_experimental",
  3236. "description": "experimental!",
  3237. "children":
  3238. {
  3239. "draft_shield_enabled":
  3240. {
  3241. "label": "Enable Draft Shield",
  3242. "description": "This will create a wall around the object, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily.",
  3243. "type": "bool",
  3244. "default_value": false,
  3245. "settable_per_mesh": false,
  3246. "settable_per_extruder": false
  3247. },
  3248. "draft_shield_dist":
  3249. {
  3250. "label": "Draft Shield X/Y Distance",
  3251. "description": "Distance of the draft shield from the print, in the X/Y directions.",
  3252. "unit": "mm",
  3253. "type": "float",
  3254. "minimum_value": "0",
  3255. "maximum_value_warning": "100",
  3256. "default_value": 10,
  3257. "enabled": "draft_shield_enabled",
  3258. "settable_per_mesh": false,
  3259. "settable_per_extruder": false
  3260. },
  3261. "draft_shield_height_limitation":
  3262. {
  3263. "label": "Draft Shield Limitation",
  3264. "description": "Set the height of the draft shield. Choose to print the draft shield at the full height of the object or at a limited height.",
  3265. "type": "enum",
  3266. "options":
  3267. {
  3268. "full": "Full",
  3269. "limited": "Limited"
  3270. },
  3271. "default_value": "full",
  3272. "enabled": "draft_shield_enabled",
  3273. "settable_per_mesh": false,
  3274. "settable_per_extruder": false
  3275. },
  3276. "draft_shield_height":
  3277. {
  3278. "label": "Draft Shield Height",
  3279. "description": "Height limitation of the draft shield. Above this height no draft shield will be printed.",
  3280. "unit": "mm",
  3281. "type": "float",
  3282. "minimum_value": "0",
  3283. "maximum_value_warning": "9999",
  3284. "default_value": 0,
  3285. "value": "9999 if draft_shield_height_limitation == 'full' and draft_shield_enabled else 0.0",
  3286. "enabled": "draft_shield_height_limitation == \"limited\"",
  3287. "settable_per_mesh": false,
  3288. "settable_per_extruder": false
  3289. },
  3290. "conical_overhang_enabled": {
  3291. "label": "Make Overhang Printable",
  3292. "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.",
  3293. "type": "bool",
  3294. "default_value": false
  3295. },
  3296. "conical_overhang_angle": {
  3297. "label": "Maximum Model Angle",
  3298. "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.",
  3299. "unit": "°",
  3300. "type": "float",
  3301. "minimum_value": "-89",
  3302. "minimum_value_warning": "0",
  3303. "maximum_value": "89",
  3304. "default_value": 50,
  3305. "enabled": "conical_overhang_enabled"
  3306. },
  3307. "coasting_enable":
  3308. {
  3309. "label": "Enable Coasting",
  3310. "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.",
  3311. "type": "bool",
  3312. "default_value": false,
  3313. "settable_per_mesh": false,
  3314. "settable_per_extruder": true
  3315. },
  3316. "coasting_volume":
  3317. {
  3318. "label": "Coasting Volume",
  3319. "description": "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed.",
  3320. "unit": "mm³",
  3321. "type": "float",
  3322. "default_value": 0.064,
  3323. "minimum_value": "0",
  3324. "maximum_value_warning": "2.0",
  3325. "enabled": "coasting_enable",
  3326. "settable_per_mesh": false,
  3327. "settable_per_extruder": true
  3328. },
  3329. "coasting_min_volume":
  3330. {
  3331. "label": "Minimum Volume Before Coasting",
  3332. "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.",
  3333. "unit": "mm³",
  3334. "type": "float",
  3335. "default_value": 0.8,
  3336. "minimum_value": "0",
  3337. "maximum_value_warning": "10.0",
  3338. "enabled": "coasting_enable",
  3339. "settable_per_mesh": false,
  3340. "settable_per_extruder": true
  3341. },
  3342. "coasting_speed":
  3343. {
  3344. "label": "Coasting Speed",
  3345. "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.",
  3346. "unit": "%",
  3347. "type": "float",
  3348. "default_value": 90,
  3349. "minimum_value": "0.0001",
  3350. "maximum_value_warning": "100",
  3351. "enabled": "coasting_enable",
  3352. "settable_per_mesh": false,
  3353. "settable_per_extruder": true
  3354. },
  3355. "skin_outline_count":
  3356. {
  3357. "label": "Extra Skin Wall Count",
  3358. "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.",
  3359. "default_value": 0,
  3360. "minimum_value": "0",
  3361. "maximum_value_warning": "10",
  3362. "type": "int",
  3363. "settable_per_mesh": true
  3364. },
  3365. "skin_alternate_rotation":
  3366. {
  3367. "label": "Alternate Skin Rotation",
  3368. "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.",
  3369. "type": "bool",
  3370. "default_value": false,
  3371. "enabled": "top_bottom_pattern != \"concentric\"",
  3372. "settable_per_mesh": true
  3373. },
  3374. "support_conical_enabled":
  3375. {
  3376. "label": "Enable Conical Support",
  3377. "description": "Experimental feature: Make support areas smaller at the bottom than at the overhang.",
  3378. "type": "bool",
  3379. "default_value": false,
  3380. "enabled": "support_enable",
  3381. "settable_per_mesh": true
  3382. },
  3383. "support_conical_angle":
  3384. {
  3385. "label": "Conical Support Angle",
  3386. "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.",
  3387. "unit": "°",
  3388. "type": "float",
  3389. "minimum_value": "-90",
  3390. "minimum_value_warning": "-45",
  3391. "maximum_value_warning": "45",
  3392. "maximum_value": "90",
  3393. "default_value": 30,
  3394. "enabled": "support_conical_enabled and support_enable",
  3395. "settable_per_mesh": true
  3396. },
  3397. "support_conical_min_width":
  3398. {
  3399. "label": "Conical Support Minimum Width",
  3400. "description": "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures.",
  3401. "unit": "mm",
  3402. "default_value": 5.0,
  3403. "minimum_value": "0",
  3404. "minimum_value_warning": "machine_nozzle_size * 3",
  3405. "maximum_value_warning": "100.0",
  3406. "type": "float",
  3407. "enabled": "support_conical_enabled and support_enable",
  3408. "settable_per_mesh": true
  3409. },
  3410. "magic_fuzzy_skin_enabled":
  3411. {
  3412. "label": "Fuzzy Skin",
  3413. "description": "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look.",
  3414. "type": "bool",
  3415. "default_value": false,
  3416. "settable_per_mesh": true
  3417. },
  3418. "magic_fuzzy_skin_thickness":
  3419. {
  3420. "label": "Fuzzy Skin Thickness",
  3421. "description": "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered.",
  3422. "type": "float",
  3423. "unit": "mm",
  3424. "default_value": 0.3,
  3425. "minimum_value": "0.001",
  3426. "maximum_value_warning": "wall_line_width_0",
  3427. "enabled": "magic_fuzzy_skin_enabled",
  3428. "settable_per_mesh": true
  3429. },
  3430. "magic_fuzzy_skin_point_density":
  3431. {
  3432. "label": "Fuzzy Skin Density",
  3433. "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.",
  3434. "type": "float",
  3435. "unit": "1/mm",
  3436. "default_value": 1.25,
  3437. "minimum_value": "0.008",
  3438. "minimum_value_warning": "0.1",
  3439. "maximum_value_warning": "10",
  3440. "maximum_value": "2 / magic_fuzzy_skin_thickness",
  3441. "enabled": "magic_fuzzy_skin_enabled",
  3442. "settable_per_mesh": true,
  3443. "children":
  3444. {
  3445. "magic_fuzzy_skin_point_dist":
  3446. {
  3447. "label": "Fuzzy Skin Point Distance",
  3448. "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.",
  3449. "type": "float",
  3450. "unit": "mm",
  3451. "default_value": 0.8,
  3452. "minimum_value": "magic_fuzzy_skin_thickness / 2",
  3453. "minimum_value_warning": "0.1",
  3454. "maximum_value_warning": "10",
  3455. "value": "10000 if magic_fuzzy_skin_point_density == 0 else 1 / magic_fuzzy_skin_point_density",
  3456. "enabled": "magic_fuzzy_skin_enabled",
  3457. "settable_per_mesh": true
  3458. }
  3459. }
  3460. },
  3461. "wireframe_enabled":
  3462. {
  3463. "label": "Wire Printing",
  3464. "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.",
  3465. "type": "bool",
  3466. "default_value": false,
  3467. "settable_per_mesh": false,
  3468. "settable_per_extruder": false,
  3469. "settable_per_meshgroup": false
  3470. },
  3471. "wireframe_height":
  3472. {
  3473. "label": "WP Connection Height",
  3474. "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.",
  3475. "type": "float",
  3476. "unit": "mm",
  3477. "default_value": 3,
  3478. "minimum_value": "0.0001",
  3479. "maximum_value_warning": "20",
  3480. "enabled": "wireframe_enabled",
  3481. "settable_per_mesh": false,
  3482. "settable_per_extruder": false,
  3483. "settable_per_meshgroup": false
  3484. },
  3485. "wireframe_roof_inset":
  3486. {
  3487. "label": "WP Roof Inset Distance",
  3488. "description": "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing.",
  3489. "type": "float",
  3490. "unit": "mm",
  3491. "default_value": 3,
  3492. "minimum_value": "0",
  3493. "minimum_value_warning": "machine_nozzle_size",
  3494. "maximum_value_warning": "20",
  3495. "enabled": "wireframe_enabled",
  3496. "value": "wireframe_height",
  3497. "settable_per_mesh": false,
  3498. "settable_per_extruder": false,
  3499. "settable_per_meshgroup": false
  3500. },
  3501. "wireframe_printspeed":
  3502. {
  3503. "label": "WP Speed",
  3504. "description": "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing.",
  3505. "unit": "mm/s",
  3506. "type": "float",
  3507. "default_value": 5,
  3508. "minimum_value": "0.1",
  3509. "maximum_value": "299792458000",
  3510. "maximum_value_warning": "50",
  3511. "enabled": "wireframe_enabled",
  3512. "settable_per_mesh": false,
  3513. "settable_per_extruder": false,
  3514. "settable_per_meshgroup": false,
  3515. "children":
  3516. {
  3517. "wireframe_printspeed_bottom":
  3518. {
  3519. "label": "WP Bottom Printing Speed",
  3520. "description": "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing.",
  3521. "unit": "mm/s",
  3522. "type": "float",
  3523. "default_value": 5,
  3524. "minimum_value": "0.1",
  3525. "maximum_value": "299792458000",
  3526. "maximum_value_warning": "50",
  3527. "enabled": "wireframe_enabled",
  3528. "value": "wireframe_printspeed",
  3529. "settable_per_mesh": false,
  3530. "settable_per_extruder": false,
  3531. "settable_per_meshgroup": false
  3532. },
  3533. "wireframe_printspeed_up":
  3534. {
  3535. "label": "WP Upward Printing Speed",
  3536. "description": "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing.",
  3537. "unit": "mm/s",
  3538. "type": "float",
  3539. "default_value": 5,
  3540. "minimum_value": "0.1",
  3541. "maximum_value": "299792458000",
  3542. "maximum_value_warning": "50",
  3543. "enabled": "wireframe_enabled",
  3544. "value": "wireframe_printspeed",
  3545. "settable_per_mesh": false,
  3546. "settable_per_extruder": false,
  3547. "settable_per_meshgroup": false
  3548. },
  3549. "wireframe_printspeed_down":
  3550. {
  3551. "label": "WP Downward Printing Speed",
  3552. "description": "Speed of printing a line diagonally downward. Only applies to Wire Printing.",
  3553. "unit": "mm/s",
  3554. "type": "float",
  3555. "default_value": 5,
  3556. "minimum_value": "0.1",
  3557. "maximum_value": "299792458000",
  3558. "maximum_value_warning": "50",
  3559. "enabled": "wireframe_enabled",
  3560. "value": "wireframe_printspeed",
  3561. "settable_per_mesh": false,
  3562. "settable_per_extruder": false,
  3563. "settable_per_meshgroup": false
  3564. },
  3565. "wireframe_printspeed_flat":
  3566. {
  3567. "label": "WP Horizontal Printing Speed",
  3568. "description": "Speed of printing the horizontal contours of the object. Only applies to Wire Printing.",
  3569. "unit": "mm/s",
  3570. "type": "float",
  3571. "default_value": 5,
  3572. "minimum_value": "0.1",
  3573. "maximum_value": "299792458000",
  3574. "maximum_value_warning": "100",
  3575. "value": "wireframe_printspeed",
  3576. "enabled": "wireframe_enabled",
  3577. "settable_per_mesh": false,
  3578. "settable_per_extruder": false,
  3579. "settable_per_meshgroup": false
  3580. }
  3581. }
  3582. },
  3583. "wireframe_flow":
  3584. {
  3585. "label": "WP Flow",
  3586. "description": "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing.",
  3587. "unit": "%",
  3588. "default_value": 100,
  3589. "minimum_value": "0",
  3590. "maximum_value_warning": "100",
  3591. "type": "float",
  3592. "enabled": "wireframe_enabled",
  3593. "settable_per_mesh": false,
  3594. "settable_per_extruder": false,
  3595. "settable_per_meshgroup": false,
  3596. "children":
  3597. {
  3598. "wireframe_flow_connection":
  3599. {
  3600. "label": "WP Connection Flow",
  3601. "description": "Flow compensation when going up or down. Only applies to Wire Printing.",
  3602. "unit": "%",
  3603. "default_value": 100,
  3604. "minimum_value": "0",
  3605. "maximum_value_warning": "100",
  3606. "type": "float",
  3607. "enabled": "wireframe_enabled",
  3608. "value": "wireframe_flow",
  3609. "settable_per_mesh": false,
  3610. "settable_per_extruder": false,
  3611. "settable_per_meshgroup": false
  3612. },
  3613. "wireframe_flow_flat":
  3614. {
  3615. "label": "WP Flat Flow",
  3616. "description": "Flow compensation when printing flat lines. Only applies to Wire Printing.",
  3617. "unit": "%",
  3618. "default_value": 100,
  3619. "minimum_value": "0",
  3620. "maximum_value_warning": "100",
  3621. "type": "float",
  3622. "enabled": "wireframe_enabled",
  3623. "value": "wireframe_flow",
  3624. "settable_per_mesh": false,
  3625. "settable_per_extruder": false,
  3626. "settable_per_meshgroup": false
  3627. }
  3628. }
  3629. },
  3630. "wireframe_top_delay":
  3631. {
  3632. "label": "WP Top Delay",
  3633. "description": "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing.",
  3634. "unit": "s",
  3635. "type": "float",
  3636. "default_value": 0,
  3637. "minimum_value": "0",
  3638. "maximum_value_warning": "1",
  3639. "enabled": "wireframe_enabled",
  3640. "settable_per_mesh": false,
  3641. "settable_per_extruder": false,
  3642. "settable_per_meshgroup": false
  3643. },
  3644. "wireframe_bottom_delay":
  3645. {
  3646. "label": "WP Bottom Delay",
  3647. "description": "Delay time after a downward move. Only applies to Wire Printing.",
  3648. "unit": "s",
  3649. "type": "float",
  3650. "default_value": 0,
  3651. "minimum_value": "0",
  3652. "maximum_value_warning": "1",
  3653. "enabled": "wireframe_enabled",
  3654. "settable_per_mesh": false,
  3655. "settable_per_extruder": false,
  3656. "settable_per_meshgroup": false
  3657. },
  3658. "wireframe_flat_delay":
  3659. {
  3660. "label": "WP Flat Delay",
  3661. "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.",
  3662. "unit": "s",
  3663. "type": "float",
  3664. "default_value": 0.1,
  3665. "minimum_value": "0",
  3666. "maximum_value_warning": "0.5",
  3667. "enabled": "wireframe_enabled",
  3668. "settable_per_mesh": false,
  3669. "settable_per_extruder": false,
  3670. "settable_per_meshgroup": false
  3671. },
  3672. "wireframe_up_half_speed":
  3673. {
  3674. "label": "WP Ease Upward",
  3675. "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.",
  3676. "type": "float",
  3677. "unit": "mm",
  3678. "default_value": 0.3,
  3679. "minimum_value": "0",
  3680. "maximum_value_warning": "5.0",
  3681. "enabled": "wireframe_enabled",
  3682. "settable_per_mesh": false,
  3683. "settable_per_extruder": false,
  3684. "settable_per_meshgroup": false
  3685. },
  3686. "wireframe_top_jump":
  3687. {
  3688. "label": "WP Knot Size",
  3689. "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.",
  3690. "type": "float",
  3691. "unit": "mm",
  3692. "default_value": 0.6,
  3693. "minimum_value": "0",
  3694. "maximum_value_warning": "2.0",
  3695. "enabled": "wireframe_enabled",
  3696. "settable_per_mesh": false,
  3697. "settable_per_extruder": false,
  3698. "settable_per_meshgroup": false
  3699. },
  3700. "wireframe_fall_down":
  3701. {
  3702. "label": "WP Fall Down",
  3703. "description": "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing.",
  3704. "type": "float",
  3705. "unit": "mm",
  3706. "default_value": 0.5,
  3707. "minimum_value": "0",
  3708. "maximum_value_warning": "wireframe_height",
  3709. "enabled": "wireframe_enabled",
  3710. "settable_per_mesh": false,
  3711. "settable_per_extruder": false,
  3712. "settable_per_meshgroup": false
  3713. },
  3714. "wireframe_drag_along":
  3715. {
  3716. "label": "WP Drag Along",
  3717. "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.",
  3718. "type": "float",
  3719. "unit": "mm",
  3720. "default_value": 0.6,
  3721. "minimum_value": "0",
  3722. "maximum_value_warning": "wireframe_height",
  3723. "enabled": "wireframe_enabled",
  3724. "settable_per_mesh": false,
  3725. "settable_per_extruder": false,
  3726. "settable_per_meshgroup": false
  3727. },
  3728. "wireframe_strategy":
  3729. {
  3730. "label": "WP Strategy",
  3731. "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.",
  3732. "type": "enum",
  3733. "options":
  3734. {
  3735. "compensate": "Compensate",
  3736. "knot": "Knot",
  3737. "retract": "Retract"
  3738. },
  3739. "default_value": "compensate",
  3740. "enabled": "wireframe_enabled",
  3741. "settable_per_mesh": false,
  3742. "settable_per_extruder": false,
  3743. "settable_per_meshgroup": false
  3744. },
  3745. "wireframe_straight_before_down":
  3746. {
  3747. "label": "WP Straighten Downward Lines",
  3748. "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.",
  3749. "type": "float",
  3750. "unit": "%",
  3751. "default_value": 20,
  3752. "minimum_value": "0",
  3753. "maximum_value": "100",
  3754. "enabled": "wireframe_enabled",
  3755. "settable_per_mesh": false,
  3756. "settable_per_extruder": false,
  3757. "settable_per_meshgroup": false
  3758. },
  3759. "wireframe_roof_fall_down":
  3760. {
  3761. "label": "WP Roof Fall Down",
  3762. "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.",
  3763. "type": "float",
  3764. "unit": "mm",
  3765. "default_value": 2,
  3766. "minimum_value_warning": "0",
  3767. "maximum_value_warning": "wireframe_roof_inset",
  3768. "enabled": "wireframe_enabled",
  3769. "settable_per_mesh": false,
  3770. "settable_per_extruder": false,
  3771. "settable_per_meshgroup": false
  3772. },
  3773. "wireframe_roof_drag_along":
  3774. {
  3775. "label": "WP Roof Drag Along",
  3776. "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.",
  3777. "type": "float",
  3778. "unit": "mm",
  3779. "default_value": 0.8,
  3780. "minimum_value": "0",
  3781. "maximum_value_warning": "10",
  3782. "enabled": "wireframe_enabled",
  3783. "settable_per_mesh": false,
  3784. "settable_per_extruder": false,
  3785. "settable_per_meshgroup": false
  3786. },
  3787. "wireframe_roof_outer_delay":
  3788. {
  3789. "label": "WP Roof Outer Delay",
  3790. "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.",
  3791. "type": "float",
  3792. "unit": "s",
  3793. "default_value": 0.2,
  3794. "minimum_value": "0",
  3795. "maximum_value_warning": "2.0",
  3796. "enabled": "wireframe_enabled",
  3797. "settable_per_mesh": false,
  3798. "settable_per_extruder": false,
  3799. "settable_per_meshgroup": false
  3800. },
  3801. "wireframe_nozzle_clearance":
  3802. {
  3803. "label": "WP Nozzle Clearance",
  3804. "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.",
  3805. "type": "float",
  3806. "unit": "mm",
  3807. "default_value": 1,
  3808. "minimum_value_warning": "0",
  3809. "maximum_value_warning": "10.0",
  3810. "enabled": "wireframe_enabled",
  3811. "settable_per_mesh": false,
  3812. "settable_per_extruder": false,
  3813. "settable_per_meshgroup": false
  3814. }
  3815. }
  3816. }
  3817. }
  3818. }