fdmprinter.def.json 383 KB

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