fdmprinter.def.json 229 KB

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