Using Parameters to Update Patterns in Fusion 360

  Рет қаралды 7,881

Learn Everything About Design

Learn Everything About Design

Күн бұрын

In this video we are going to talk about a problem. The problem of building a parametric design that can update pattern instances when it changes size. In Fusion 360 we don't have an IF statement to use in parameters but we do have a few other tricks. Using "floor", "ceil", "round" and a few other logical operators we can make something work.
In this video we will build a plate with a hole pattern that will update the pattern spacing and amount, but we will also look at another example of a fence that can change height and length and increase boards. We also want to get familiar the help file so we know what is possible.
help.autodesk.com/view/fusion...
Hole Pattern Example: a360.co/3iF6oLX
Fence Example: a360.co/3urTqGM

Пікірлер: 32
@acintron3Dmfg
@acintron3Dmfg 2 жыл бұрын
The most underrated F360 channel for me is my decentralized university.
@MultiHippie13
@MultiHippie13 3 ай бұрын
I think this answered my questions about patterns and spacing, now I need to update my model
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign 3 ай бұрын
When i made this video IF statements weren't released yet, so be sure to check out the IF statement video which might make it easier kzbin.info/www/bejne/b2Kvc3pjaKmeprs
@MultiHippie13
@MultiHippie13 3 ай бұрын
@@LearnEverythingAboutDesign It's not going how I thought it would, it's spacing them too far apart and cutting off the remaining. EDIT: Figured it out, I had to subtract the width of the feature from the spacing
@victorlawver6957
@victorlawver6957 2 жыл бұрын
Cool explanation of using variables
@barrysmit3853
@barrysmit3853 Жыл бұрын
Great stuff, really helpful. Got what I needed first try! +REP Thanks
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
Awesome!!
@morronlama
@morronlama Жыл бұрын
Skilling up in fusion at the moment. Another great video
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
Thanks!
@melvinbrian3d585
@melvinbrian3d585 Жыл бұрын
Excellent, Those re Hiding Parameters Tricks, i recreate your example and works!! i try before but always get frustrate by the red color on the function, but you solved Flawless putting the units inside on the number
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
Glad it helped! Parameters are very useful, but I wish there was a bit more there. Maybe one day but for now these little tricks can help.
@lars-sorensen
@lars-sorensen 2 жыл бұрын
Love this! And please can someone pressure Autodesk to include conditional expressions??
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign 2 жыл бұрын
Thanks Lars! I have mentioned it before :) If statements exist in CAM Expressions. Something like tool_diameter < 0.25 ? 0.5: 0.75 . Which works like If (tool_diameter < 0.25 then use 0.5 otherwise use 0.75. I have tried on many occasions to do that in a parameter without luck. Maybe one day!
@dal2888859
@dal2888859 Жыл бұрын
Ive followed step by step three times with you. Great instruction, thanks! One question i havent been able to work through in these hours: In the formula, "floor(width/count/x))" you chose 50 for x, and i cant understand why 50. What is 50 in your equation? I dont know what to choose for my own to output the desired spacing. Thanks
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
Hey Dallas, yeah using Floor or Ceiling is a bit of a trick unfortunately. Really it would be nice to have an if/else statement. In this case the 50 in the equation just gives us a nice pattern. In the hole pattern example i had 25mm offset from each side of the plate. Using 50 in the Floor function just took the width and divided it up nicely. With this method you can't really control the exact spacing between each hole/feature but just work out a range that works for you. So in the example 800/50 gave us a nice round 16 holes. When we go to 799/50 the answer is 15.98 and Floor rounds that down to 15 instances of the pattern. If i had changed the formulate to floor(Length/25), at 800mm length i would get 32 holes vs the 16 holes in my example. If you start playing with numbers like 30 that aren't as evenly divisible you end up seeing a lot more rounding down. Hopefully that helps.
@dal2888859
@dal2888859 Жыл бұрын
@Learn Everything About Design thank you for the reply! I think the trouble is, in my situation, the number of instances is going to be set, and i want the extent and spacing of that pattern to remain centered within, and offset from the edges of a certain length. In your example, the number of holes is not critical. It might not be the right formula for what im trying to do. Very helpful to know anyway. Discovering parameters is a revelation.
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
@@dal2888859 For your case it might make more sense to do this with construction geometry. Take a look at this example and adjust the plate width parameter a360.co/3TsypX8 It is all done with equal construction lines. So the spacing changes but the number doesn't. is that what you mean?
@dal2888859
@dal2888859 Жыл бұрын
@Learn Everything About Design yes, but in addition to the ability to adjust the length and have the hole spacing adjust accordingly, as that one does, i also want to be able to input hole number and have that change seperately from the length. So if i want to make an egg tray for example, I'd like my design to allow me to increase the number of eggs it holds in a line, and/or the length of the model, where the two inputs are independently controlled, and where the number of eggs is always centered on the platform, whether its an odd or even number. I finally got my model to behave that way but im sure there is a cleaner or more efficient way to do it than i did. Id be happy to send it to you
@user-nz2bq5hg4q
@user-nz2bq5hg4q 7 ай бұрын
Is there a chance you could do a pattern like this but on a Circle or cylinder face? I am going to try and apply what I have learned thus far and see what happens. Looking to design a gear driven rod cylinder tumbler. Putting an idea together for my baby son to play with.
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign 6 ай бұрын
can you drop me an email support@caducator.com so i can better understand what you are trying to do. It is possible to do the same thing, but since this video was made Fusion did add some more conditional statements so now we have If/Else. I have a video on that as well, but there might be better options than what was done here with floor/ceil
@stefanbolesnikov529
@stefanbolesnikov529 7 ай бұрын
We have if else now, would you create an updated tutorial? :) Thnaks.
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign 7 ай бұрын
I have one from when If/Else was added. kzbin.info/www/bejne/b2Kvc3pjaKmeprs
@SimonLanz
@SimonLanz 2 жыл бұрын
First! 😊
@OnceinaSixSide
@OnceinaSixSide Ай бұрын
I think this tutorial might be out of date now. I've tried replicating every step exactly and it just does not work on the latest Fusion :(
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Ай бұрын
hmmm. it should still work, but i will check it out and be sure. thanks. I do have an updated video when the IF statement was added kzbin.info/www/bejne/b2Kvc3pjaKmeprs
@alfredjodokusquack2
@alfredjodokusquack2 Жыл бұрын
kzbin.info/www/bejne/Y3OzlJ6qhtx8f7s anyone else running into the issue, that the dialog does not accept a user parameter for the pattern distance right now (Apr 29th 2023)?
@alfredjodokusquack2
@alfredjodokusquack2 Жыл бұрын
seems like it does not accept an expression, if the expression itself references a driven sketch dimension.
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
I just tested this and it works for me. When you start typing in the dialog do you see the list of parameters there?
@alfredjodokusquack2
@alfredjodokusquack2 Жыл бұрын
@@LearnEverythingAboutDesign thank you for responding. It seems, that in a fresh and neutral setup this works for me as well. I figured out that it does not work in the following scenario: - make a master design with a few general sketches. (I usually did this for assemblies in solidworks and do it in fuson as well.) add an external component to the master assembly and use in-context-editing to create an assembly context. Within this assembly context create a sketch with reference to the parent assembly and add at least one driven dimension. Create a User Parameter within the subassembly, which references the driven dimension. Long story short, try to use this User Parameter, it will not work. Or will it?
@LearnEverythingAboutDesign
@LearnEverythingAboutDesign Жыл бұрын
@@alfredjodokusquack2 So this is an interesting topic for sure and there are some nuances here. Assemblies in solidworks will have Global parameters and those parameters can be used other places like drawings. Contrast that with Fusion where you only have a single design file (no part and assembly files) and you get a different behavior. When you have an Xref(External reference) design inserted making it a "distributed design" the parameters are contextual. meaning if you are using the Edit in Place functionality you can create and access parameters that are inside of that design, but once you finish the edit in place, you are only seeing parameters that exist in the parent design. A test for this is to Edit in Place, Create a new parameter called "EditinPlace". finish edit in place and save the design. Open the external design, and before you update to the new version, check your user parameters and note the new one isn't there. Update to the new version and check again and it will be there. So as it stands right now the parameters are only inside of the "parent" design. So you can't really work in this manner trying to share them across external refs. Hopefully that all made sense. To do what I think you are trying to do it will really only work if all your components are internal to the parent. There is one odd nuance here where you can have a bunch of components in a single design, select one component and Derive it out into its own design and take the parameters with it. It is a bit of the opposite of what you are trying to do, but might be something interesting to play with.
@alfredjodokusquack2
@alfredjodokusquack2 Жыл бұрын
@@LearnEverythingAboutDesign i agree with all your points i guess. not sure though, if i made my attempted workaraund clear. so to be able to pass a parameter through, i created a new sketch within the "editinplace" component, which uses project to fetch some geometry vom the parent context assembly i put a driven dimension onto this projected geometry. you can then go into the parameters menu and reference this specific driven dimension. In rare cases i can trick the solver to accept the driven user parameter, but it does not take long to generate a red warning.
Using Text Commands in Scripts - Creating A Custom Script #Fusion360 #API
28:08
Learn Everything About Design
Рет қаралды 6 М.
Alex hid in the closet #shorts
00:14
Mihdens
Рет қаралды 10 МЛН
Nastya and SeanDoesMagic
00:16
Nastya
Рет қаралды 15 МЛН
How Many Balloons Does It Take To Fly?
00:18
MrBeast
Рет қаралды 166 МЛН
How To Model An IsoGrid in Fusion 360 | Parameter Based IsoGrid Tutorial | #fusion360
21:24
Learn Everything About Design
Рет қаралды 19 М.
Fusion360 TOP 10 Mistakes made by users - Great TIPS
20:01
Design Creativity & Technology Channel
Рет қаралды 29 М.
Whats New in Fusion May 2024 | Ground To Parent | Insert Component
13:18
Learn Everything About Design
Рет қаралды 4,9 М.
More Robust Parametric Models Fusion 360
11:21
What Make Art
Рет қаралды 2,2 М.
Fusion 360 Configurations! | What's New Sept 2023 | How To Configure A Part | Tutorial
13:01
Fusion360: Automatically sized finger-joints
22:55
Hobbyist Maker
Рет қаралды 77 М.
Creating Spiraling Holes with Fusion 360
18:37
Desktop Makes
Рет қаралды 30 М.
SIMULATION in FUSION 360: IMPROVE the STRENGTH of your 3D prints!
21:38
SMART idea and very USEFUL 📱 #camping #survival #bushcraft #outdoors
0:14
Ăn Vặt Tuổi Thơ
Рет қаралды 16 МЛН
smart appliances! new gadgets, versatile utensils, tool items #shorts #gadget
0:10
Pretty Balloon Family
Рет қаралды 55 МЛН
When Brother Refuses to Listen #shorts #funny #fypシ゚viral
0:19
Javi’s Family Adventures
Рет қаралды 12 МЛН
SMART idea and very USEFUL 📱 #camping #survival #bushcraft #outdoors
0:14
Ăn Vặt Tuổi Thơ
Рет қаралды 16 МЛН