fdmprinter.def.json 326 KB

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