See the top rated post in this thread. Click here

Page 1 of 3 123 LastLast
Results 1 to 10 of 22

Thread: Scheduling filled regions in elevation - suggested alternatives?

  1. #1
    Member
    Join Date
    2009-08
    Posts
    13
    Login to Give a bone
    0

    Lightbulb Scheduling filled regions in elevation - suggested alternatives?

    Hi all,
    As part of a massive conservation project we need to cleverly mark up elevations of the existing building to show parts that need different types of treatment. Filled regions would be the ideal tool for this - except that I need to keynote AND schedule the areas of those 'patches'.
    Essentially, I need to be able to schedule the total amount of area of the elevation that needs treating, what type of treatment, etc, at the same time ensure consistency by using keynoting in those elements.
    A detailed component would help with keynoting but doesn't provide the area of the 'patch'.
    Any ideas?

  2. #2
    AUGI Addict
    Join Date
    2009-03
    Location
    Somerville, MA
    Posts
    1,060
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    Quote Originally Posted by luisa.correia View Post
    A detailed component would help with keynoting but doesn't provide the area of the 'patch'.
    The only way I can think to do this off the top of my head is with an adaptive component of generic model category. It could have one adaptive point and you just place it on a vertical work plane and adjust some size parameters, or it could have four adaptive points and you could place all four corners (or more corners if there are irregular areas).

    The other way I can imagine doing it is with a generic model in the shape of a rectangular solid with height and width parameters. It could be very thin. It could float in front of the elevation.

    Both of these could get you there, but I'm sure that them being objects (rather than 2d annotations) could cause some headaches.

    Final idea, you could draw the fill region AND place a detail item. You would have to manually input the area from the fill region into a parameter of the detail component, but then could tag and schedule the detail items.

  3. #3
    Member
    Join Date
    2009-08
    Posts
    13
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    Thanks for this Damon,

    I am keen on testing your last suggestion. I am reluctant to add more 3d geometry to an already complex model. I am thinking I could just use a User Keynote which picks up the wall behind the filled region to avoid adding a detail component to deal with the keynoting. Then adding a 'Manual Area' parameter right next to the 'Area' system parameter would make it easy and quick to detect if it needed updating, and I could then use another parameter to filter the filled region types.

    That was very useful - thanks!

  4. #4
    AUGI Addict
    Join Date
    2009-03
    Location
    Somerville, MA
    Posts
    1,060
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    Glad it was helpful!

    One last thought on your "I am reluctant to add more 3d geometry..." comment. When there is 3d geometry that I am using for quirky purposes like this, I like to take advantage of tricks to "hide" it. The most simple way would be placing all of it on a Workset that is off by default in all views. The other way I've done when that is unsavory is create a Design Option Set with two options. The first is the primary and it is empty. The second option has the offending 3d geometry in it. That way I can switch to that design option in just the views I want to see that geometry.

    Just some additional thoughts if the Manual Area becomes unmanageable.

  5. #5
    Super Moderator david_peterson's Avatar
    Join Date
    2002-09
    Location
    Madison, WI
    Posts
    5,688
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    there's a sweet script in Dynamo that allows you to Tag (so I would assume schdule) areas of filled regions. Is that what you're looking to do?

  6. #6
    Member
    Join Date
    2009-08
    Posts
    13
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    Yes david_peterson, that would be ideal, I assume it could extract the areas as well? Where can I find this?

  7. #7
    Certifiable AUGI Addict
    Join Date
    2015-11
    Location
    Jo'burg SA
    Posts
    4,512
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    An alternative (if the facade is a solid wall and not a curtain wall) is to use the Split Face tool. Effectively you'd be drawing the same borders as your filled regions - but direct onto the 3d object's faces. This would even allow you to do so on curved surfaces - which would be very problematic using filled regions.

    Then you can "paint" the various faces using any material of your choice (allows for varying surface hatches as well as render/realistic view appearance). Which then allows you to both tag & keynote those, as well as schedule them.

    - - - Updated - - -

    Quote Originally Posted by luisa.correia View Post
    Yes david_peterson, that would be ideal, I assume it could extract the areas as well? Where can I find this?
    I think david was referring to something like this: https://www.youtube.com/watch?v=kd53-ofHCgY

  8. #8
    Member
    Join Date
    2009-08
    Posts
    13
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    irneb,
    Split face could work but this is a historic building with complex elevations, wall sweeps, and other features - I believe some of the walls are already using split face to show different materials so this would get tricky.
    On paper a filled region is all I need as this will only be shown on a particular set of technical elevations, but the ability to schedule and tag is missing.
    I might venture into Dynamo for this but suspect the team may prefer to do a bit of manual work instead!
    Thanks all.

  9. #9
    Super Moderator david_peterson's Avatar
    Join Date
    2002-09
    Location
    Madison, WI
    Posts
    5,688
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    Here's a you tube video
    https://www.youtube.com/watch?v=kd53-ofHCgY
    Here's a tagging method
    http://therevitkid.blogspot.com/2015...+Kid.com%21%29
    There's a ton more out there.
    Hope this helps.

  10. #10
    Member
    Join Date
    2015-12
    Posts
    19
    Login to Give a bone
    0

    Default Re: Scheduling filled regions in elevation - suggested alternatives?

    I always advise to keep as much as possible the use of Revit tools for their intended use (e.g. use a wall command to make walls and nothing else). So if the "Filled Region" command lacks a scheduling functionality, instead of finding alternative command we can extend the functionality of Revit using .Net programming or a Revit Script. For your particular use, the below script is sufficient to produce the schedule. If you need help plugging it in into Revit, I can provide instructions. Currently the script will create a schedule for the Active View (currently open view) listing each Region Type and its Area, but it can be extended to run through all elevations.


    public void ScheduleFilledRegions()
    {
    var uidoc = ActiveUIDocument;
    var doc = uidoc.Document;
    var collectorFilledRegions = new FilteredElementCollector(doc, uidoc.ActiveView.Id).OfType<FilledRegion>();

    string data = "";

    foreach (var e in collectorFilledRegions) {
    var regionArea = e.GetParameters("Area")[0].AsDouble() * 0.092903;
    var regionType = doc.GetElement(e.GetTypeId()).Name;
    data += regionType + "," + regionArea.ToString("#.###") + Environment.NewLine;
    }

    TaskDialog.Show("Filled Regions Schedule", data);
    }

Page 1 of 3 123 LastLast

Similar Threads

  1. 2012: Scheduling Filled Regions
    By jolden in forum Revit Architecture - General
    Replies: 2
    Last Post: 2011-12-23, 12:55 AM
  2. Filled Regions
    By Saimon in forum Revit MEP - Families
    Replies: 4
    Last Post: 2010-05-17, 06:55 PM
  3. Filled regions converting to masking regions
    By GS Fulton in forum Revit Architecture - General
    Replies: 1
    Last Post: 2007-06-06, 06:12 PM
  4. Filled Regions
    By David Sammons in forum Revit Architecture - General
    Replies: 3
    Last Post: 2005-02-10, 07:27 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •