fdmprinter.def.json 479 KB

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