fdmprinter.def.json 212 KB

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