fdmprinter.def.json 426 KB

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