Hi All!
I have been trying to improve the workflow between massing studies using grasshopper>rhino>revit although I can’t seem to find a way to implement the grasshopper script in a way where when I am doing roof forms for Revit to register the massing as a roof form. This would be very beneficial as the walls would automatically adjust for the roof and all that good stuff. So far I have only managed to create a flat roof from "roof from boundary " but I can’t find a way to then edit that roof in grasshopper, any suggestions?
do you want to create a native revit roof and then edit the subelements so you could “kink” the roof surface in revit such as adding slopes? if so the “edit subelement” is not an option with OOTB RIR nodes.
perhaps the devs could chime in if that is a possibility to add it.
or were your roof shapes in grasshopper curved? or all of the above?
Again
so the “edit subelement” is not an option with OOTB RIR nodes.
you could create your own custom c# or python node that taps the revit api to do this for you or ask the devs to include that node in a feature request
Understood, and is there a specific way I can get this across to the developers?
Also I am new to python but am willing to learn, is there a good vid/tutorial out there that can help me get started on coding a component of this type?
Thank you so much!
There are a number a ways to make roofs. And determining the best way is key. @ehsan can address the right way, but here is one way I made a Roof from face:
A roof from face has to be attached to a mass. A mass, per the SDK has to be made a family. So, here I create the mass in Rhino, then I create a Mass Family in Grasshopper named roofmass2.
Then get its Type and Add type by location. Once in Revit, you can use the top face to make a roof by the Roof by Face command:
Thank you so much!
I have a couple more questions which arose as a result of me testing this out:
When the mass is generated it is slightly out of place, is there a way to control where the mass is generated. I have tried moving around the point without success. Also can you modify the roof once it is in revit for instance changing the type of roof it is in grasshopper and have that be reflected in Revit? I am attaching a pic of the script, which uses the center area point.
Technically you would move the rhino geometry to 0,0,0 before making it a family. This allows the insertion point of the Type instance to be the same for the same placement.
You can see here that the geometry is first moved before creating the family:
Thanks for sharing all of this. I managed to set it all up, but at the end, the Add Component (Location) tells me my mass contains no solid geometry. I am referencing a closed solid polysurf. Would you take a look?
I referenced other shapes (also closed polys) and those worked! Even some with double curved faces.
So this is a fun category/family problem that we all need to keep in mind. Roofs are system Families. So you cannot add a Roof as a Component Family. You options are:
Add the Brep as Directshapes to the Roof Category. Then use View Filters to control their graphics.
Use the Add Roof Component which only Adds a Roof from outline. (We need to add a couple more here)
Use a Family type that is not a system type. Then Sub-categorize the Forms in the Family as custom objects. For instance GenericModel with a Roof-Building subcategory?
amazing script! i have tried to use this script for generating the mass, but i keep seeing in rhino that the object doubles when the mass is generated in revit, it works but it s a bit distracting in rhino, do you know why?
Lavi Lavi, What you are seeing are the grasshopper previews. You can turn those off globally using the Grasshopper preview toolbar, or individually by right clicking or middle mouse button to turn off by component.