Clicky Web Analytics
presentation
documentation
creation
automation
bim after dark live
Showing posts with label practical dynamo. Show all posts
Showing posts with label practical dynamo. Show all posts

Thursday, December 2, 2021

Practical Dynamo for Revit (w/Aussie BIM Guru)


On this episode of BIM After Dark Live I was joined by Gavin Crump ("Aussie BIM Guru") to share his practical Dynamo for Revit tips, tricks, and scripts.  

Gavin shared his most used scripts and showed us HOW to make them.  Not only that, but he will be discussing them within the context of how much time they can save you!  

Some examples of scripts Gavin will be demonstrating are:
- Adding and removing revisions to and from sheets.
- Making floors from rooms.
- Adding shared parameters in bulk 

Oh, and Gavin showed us how you can make an Revit ribbon button that runs a Dynamo script using Python....!?

Monday, November 23, 2015

Practical Dynamo - Following Topography



Snap an object to your topography in Revit... I dare you to! Oh, you can't?

Accurately following topography is one of those things Revit just has not evolved to yet.  There are many objects you may want to follow topography: trees, pipes, fences, roads, etc...In the past, there have been a few different workarounds (one of them required exporting your topography as a DWG and the importing it so you can select edges, etc...!).  Well, now that we have Dynamo accurately following topography can be as easy as a single click... really...


Monday, November 16, 2015

Practical Dynamo - Apply Parameter Values (Using Saved Selection Sets)




For the next installment of the "Practical Dynamo" mini-series I am going to expand on the last script (which utilized Dynamo to apply parameter values to multiple objects).  The previous script worked but you have to manually select the elements and add them to your node in Dynamo.  This can be cumbersome and also cause you to select elements twice if you are trying to add something like a building area parameter.

My first solution was creating save selection sets... Then using those sets to isolate the elements, select the elements in Dynamo, run the script, un-isolate, and repeat... Yeah, I know...  It sounds ridiculous.  Well, my first rule of thumb in Revit (and now Dynamo) is if it seems like its taking too long there is probably a better way to do it... So I found a better way...


Monday, November 9, 2015

Practical Dynamo - Apply Parameter Values


(Image: Dynamo Primer)

I have been posting little screenshots on Twitter of current Dynamo scripts and people seem to love them.  One of the cool things about Dynamo is you can see a simple snippet of all the nodes and recreate the script pretty effectively.  Its a method I have used when learning Dynamo.  It helps me to use different nodes, search for packages, and understand logic.  Well, I thought it would be a good mini-series here on the blog.  The first script I am going to show you is very simple but includes some nice booleans, logic, and nodes.

Continue reading for a practical use of Dynamo, applying a parameter value to all selected elements...