See the top rated post in this thread. Click here

Results 1 to 10 of 10

Thread: Automate grading students' assignments in Revit class

  1. #1
    I could stop if I wanted to Haden's Avatar
    Join Date
    2004-05
    Location
    St. Louis, Missouri
    Posts
    292
    Login to Give a bone
    0

    Question Automate grading students' assignments in Revit class

    I have been teaching Revit classes for several years now, and find the biggest challenge is taking time to grade all the assignments my students submit.

    I am trying to decide if it is practical for me to take the time to master the Revit API and the related applications to a point where I can write automated macros that could evaluate the elements within a Revit file submitted for an assignment.

    Does anyone have any experience tackling this type of task, or at least an idea if such a goal is practical, given the current status of the Revit API?

  2. #2
    Certifiable AUGI Addict Dimitri Harvalias's Avatar
    Join Date
    2015-12
    Location
    Vancouver, BC Canada
    Posts
    3,753
    Login to Give a bone
    1

    Default Re: Automate grading students' assignments in Revit class

    Autodesk may have already done you the favour.
    Have you had a look at the Model Review add in that was added with the Subscription Advantage Pack? You might be able to get part way there using these tools. It depends what you are trying to check for.

    I completely understand what you are saying. I have taught Revit in a classroom situation and grading the term assignment always felt like a real chore. My ideal class was 20 students who all wanted to just audit the course.

  3. #3
    100 Club
    Join Date
    2004-02
    Location
    Brookline, MA
    Posts
    186
    Login to Give a bone
    0

    Default Re: Automate grading students' assignments in Revit class

    I've used tools like the new Model Review for grading in limited situations in the past.
    Out of curiousity, what would your criteria be for automated grading?

    -Matt

  4. #4
    I could stop if I wanted to Haden's Avatar
    Join Date
    2004-05
    Location
    St. Louis, Missouri
    Posts
    292
    Login to Give a bone
    0

    Default Re: Automate grading students' assignments in Revit class

    I have been fooling with the Revit Model Review Add-in, and have reached a glitch in te results.

    This is a simple example in which my first assignment is checked for the right quantity of walls, and the right quantity by each wall type. It works for the total, as well as 2 of the 4 wall types, but on the other 2 types, it counts one too many. There are 20 walls, 9 of which are 5 1/2", 9 are Brick, 1 is Plaster, and 1 is 7 1/2" For some reason, it comes up with 10 for the 5 1/2", and 2 for the Plaster. (I have run it on several simiilar students' files, used "Select all instances" to check it, and in all cases, this same erroneous result.

    I am attaching the .bcf test file (which I had to add a .txt to the end in order to upload), as well as the purged revit project file I tested it on. If anyone out there is familiar with the Revit Model Review system, I would welcome some feedback on why this might be happening. (Factory -- is this a program glitch?)
    Attached Files Attached Files

  5. #5
    100 Club
    Join Date
    2004-02
    Location
    Brookline, MA
    Posts
    186
    Login to Give a bone
    1

    Default Re: Automate grading students' assignments in Revit class

    Haden,

    It is a glitch - of a sort, I would say. You shouldn't be able to configure the Number of Elements check without explicitly picking one or more element types on the Details pane (or "All").

    What is happening is that for the 5 1/2" and the Furring Plaster checks, there is no "Element Type" selected (so it is assuming "All" element types). This is causing both "Walls" and "WallTypes" to be reported (which messes with your count). You can see this on the "Items" tab in the report.

    When I went back and edited the check file to specifically look for "Walls" only, I think it performed as you would expect.

    Best Regards,
    Matt Mason
    Avatech Solutions

  6. #6
    I could stop if I wanted to Haden's Avatar
    Join Date
    2004-05
    Location
    St. Louis, Missouri
    Posts
    292
    Login to Give a bone
    0

    Question Re: Automate grading students' assignments in Revit class

    I am definitely making progress with my automated grading routines, but I still find the interface very user-unfriendly.

    My latest problem is this: I am trying to identify how many doors have been properly placed of the correct type, in the correct wall type, at the correct level. (Thus, I can verify if the "front door" is correct.)

    The attached test .rvt file and .bcf file shows that I can get these parameters checked separately, but when I add the check for level on top of the check for door type and wall type, the filter comes up empty with a sample size of 0. Any ideas? (Note: I had to rename the ".bcf" file to ".bcf.txt" to upload it as an attachment.) Thanks in advance for any help here.
    Attached Files Attached Files

  7. #7
    100 Club
    Join Date
    2004-02
    Location
    Brookline, MA
    Posts
    186
    Login to Give a bone
    0

    Default Re: Automate grading students' assignments in Revit class

    Haden,

    That appears to be a limitation in the ModelReview 2010 build - that it does not handle filtering of parameters that are Element references (as opposed to text or number values).
    It was addressed in a forthcoming build, and we're continuing to evaluate it.

    Sorry,
    Matt

  8. #8
    I could stop if I wanted to Haden's Avatar
    Join Date
    2004-05
    Location
    St. Louis, Missouri
    Posts
    292
    Login to Give a bone
    0

    Thumbs up Re: Automate grading students' assignments in Revit class

    Quote Originally Posted by mmason.65315 View Post
    ... it does not handle filtering of parameters that are Element references (as opposed to text or number values).
    The thing about it is, the check that I am doing which filters by both door type and the wall host type for the door is working, and the check which filters by level of the door is also working, but when I put all 3 into the same filter, it does not work. Unless I'm not understanding you quite right, it seems that it does filter by element references, but just not in certain combinations.

    But I really do appreciate your help and expertise, Matt. As I mentioned in another thread, I see great potential for Model Review, certainly in the context of teaching and training, as well as many other applications.

  9. #9
    100 Club
    Join Date
    2004-02
    Location
    Brookline, MA
    Posts
    186
    Login to Give a bone
    0

    Default Re: Automate grading students' assignments in Revit class

    Haden,

    The problem is that there's a slight difference in how the Parameter _Filter_ works from how the Parameter Requirements _Check_ works... The _Check_ was built specifically to check "ElementId" type parameters, but the filter (at the time we released 2010) was not.

    We really do appreciate your feedback... It's nice to see people putting effort into making it work, and we'd like to see how to make it better.

    -Matt

  10. #10
    Woo! Hoo! my 1st post
    Join Date
    2024-02
    Posts
    1
    Login to Give a bone
    0

    Default Re: Automate grading students' assignments in Revit class

    Struggling with Revit API assignments? Seek Revit Assignment Help for expert guidance. Revit API opens doors to customized workflows and automation, but its complexities can be challenging. With specialized assistance, grasp concepts like element manipulation and parameter control effortlessly. Don't let Revit API assignments overwhelm you; reach out for support and excel in your studies

Similar Threads

  1. Revit download for students
    By mriva in forum Revit - Student Support
    Replies: 0
    Last Post: 2010-09-08, 04:46 PM
  2. Downloading revit for students & teachers
    By pomalt13 in forum Revit - Student Support
    Replies: 6
    Last Post: 2009-09-12, 02:04 AM
  3. Attn: Instructors and students of Revit
    By jhectorne in forum Revit Architecture - General
    Replies: 4
    Last Post: 2008-02-21, 09:20 PM
  4. Santiago High Students win with Revit
    By bill0246 in forum Revit - Student Support
    Replies: 10
    Last Post: 2007-05-09, 05:55 PM

Posting Permissions

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