fdmprinter.def.json 215 KB

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