fdmprinter.def.json 311 KB

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