fdmprinter.def.json 339 KB

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