/forge-revit.extract.quantity-bim360.cost

[Deprecated]A sample showing extracting quantity info from Revit and create budgets within BIM360

Primary LanguageJavaScriptMIT LicenseMIT

DEPRECATED

This repository has been deprecated and all its content was moved to the new one located here https://github.com/autodesk-platform-services/aps-extract-revit-quantity-cost

forge-revit.extract.quantity-bim360.cost

Node.js npm Platforms Data-Management Design-Automation Forge-Viewer Cost Management

Windows .NET Revit-2020

Advanced MIT

Description

This sample demonstrates extracting quantity information of Revit element directly from model under BIM 360 using design automation service, and calculate the budget for each element based on the quantity and price which is stored in database. The sample also provides the ability to import the generated budgets directly into BIM 360 Cost Management module, and synchronize the Unit Price for each element between Cost module and Price Book database.

Thumbnail

thumbnail

Demonstration

https://youtu.be/zJKvatl3zek

Live Demo

https://revit-qto-bim360.herokuapp.com/

Main Parts of The Work

  1. Create a Revit Plugin to be used within AppBundle of Design Automation for Revit. Please check PlugIn
  2. Create your App, upload the AppBundle, define your Activity, you can simply use the **Configure** button in the Web Application to create the Appbundle & Activity. Or you can use Postman to do that according to this tutorial and repo
  3. Create the Web App to call the workitem.

Web App Setup

Prerequisites

  1. Forge Account: Learn how to create a Forge Account, activate subscription and create an app at this tutorial.
  2. BIM 360 Account: must be an Account Admin to add the app custom integration, or invited by an admin of a BIM 360 Account. Learn about provisioning.
  3. BIM 360 Cost Management: Create BIM 360 project, activate Cost Management module, setup project to create Budget Code Template for Cost Management according to the guide
  4. Visual Code: Visual Code (Windows or MacOS).
  5. Revit 2020 & Visual Studio 2017: required to compile changes into the plugin
  6. ngrok: Routing tool, download here
  7. MongoDB: noSQL database, learn more. Or use a online version via Mongo Altas (this is used on this sample)

For using this sample, you need an Autodesk developer credentials. Visit the Forge Developer Portal, sign up for an account, then create an app. For this new app, use http://localhost:3000/api/forge/callback/oauth as Callback URL. Finally take note of the Client ID and Client Secret.

Running locally

Install NodeJS, version 8 or newer.

Clone this project or download it (this nodejs branch only). It's recommended to install GitHub desktop. To clone it via command line, use the following (Terminal on MacOSX/Linux, Git Shell on Windows):

git clone https://github.com/Autodesk-Forge/forge-revit.extract.quantity-bim360.cost

Install the required packages using npm install.

ngrok

Run ngrok http 3000 to create a tunnel to your local machine, then copy the address into the FORGE_WEBHOOK_URL environment variable. Please check WebHooks for details.

MongoDB

MongoDB is a no-SQL database based on "documents", which stores JSON-like data. For testing purpouses, you can either use local or live. For cloud environment, try MongoDB Atlas (offers a free tier). With MongoDB Atlas you can set up an account for free and create clustered instances, intructions:

  1. Create an account on MongoDB Atlas.
  2. Create a free version of cluster, use the default setting, but name it as forgesample for example.
  3. Whitelist the IP address to access the database, see this tutorial. If the sample is running on Heroku, you'll need to open to all (IP 0.0.0.0/0).
  4. Create a new user to access the database, please keep the user name and password to be used in the following connection.
  5. At this point, you can click Connect button to check your connection string to the MongoDB cluster, the connection string should be in the form like mongodb+srv://<username>:<password>@<clustername>-<njl8m>.mongodb.net.

Please set environment variable OAUTH_DATABASE with your url. Learn more here

There are several tools to view your database, Robo 3T (formerly Robomongo) is a free lightweight GUI that can be used. When it opens, follow instructions here to connect to MongoDB Atlas.

Environment variables

Set the enviroment variables with your client ID & secret and finally start it. Via command line, navigate to the folder where this repository was cloned and use the following:

Mac OSX/Linux (Terminal)

npm install
export FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
export FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
export FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
export FORGE_WEBHOOK_URL=<<YOUR DESIGN AUTOMATION FOR REVIT CALLBACK URL>>
export OAUTH_DATABASE="mongodb+srv://<username>:<password>@<clustername>-<njl8m>.mongodb.net>>"

npm start

Windows (use Node.js command line from Start menu)

npm install
set FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
set FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
set FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
set FORGE_WEBHOOK_URL=<<YOUR DESIGN AUTOMATION FOR REVIT CALLBACK URL>>
set OAUTH_DATABASE="mongodb+srv://<username>:<password>@<clustername>-<njl8m>.mongodb.net>>"
npm start

Using the app

Open the browser: http://localhost:3000.

Please watch the Video for the detail setup and usage, or follow the steps:

  • Setup the app before using the App
  1. Make sure the Forge App is integrated with your BIM 360 account, please click Enable my BIM 360 Account button and follow the steps to finish the integration.
  2. Make sure to create Revi Design Automation Appbundle & activity, click Configure button, select local AppBundle and Engine to create. Currently, Revit 2019|2020 engines are both supported.
  3. Make sure to Create BIM360 project, activate Cost Management module, setup project for Cost Management, a Budget Code Template must be created before adding or importing budget items.
  4. Make sure to initialize the Price Book database, open Price Book dialog, set Length of budget code according to your definition for Budget Code Template(the digits length of your budget code), and click Reset button, it will create Standard_Book(database), Price_Book(collection), with a couple of predefined sample price items.
  • Operate with App after setup
  1. Select Revit file version in BIM360 Hub to view the Model, Click Extract quantity from the model button, it will extract the quantity info for each Revit element, and calculate the budget based on the quantity and price which is stored in database as Price Book, then display you the result in table|chart.
  2. Clike Update to BIM360, it will import the generated budgets directly into BIM 360 Cost Management module.
  3. Open BIM 360 Cost Management module, check the budgets, and update the Unit Cost for any budget item, then click Get Unit Price from BIM360 button, it will update the Price Book in the database and refresh budget table|chart based on the updated Unit Price from BIM360.

Deployment

To deploy this application to Heroku, the Callback URL for Forge must use your .herokuapp.com address. After clicking on the button below, at the Heroku Create New App page, set your Client ID, Secret, Callback URL and Revit Design Automation variables for Forge.

Deploy

Watch this video on how deploy samples to Heroku.

Packages used

Further Reading

Documentation:

Desktop APIs:

Tools

Tips & Tricks

  • The sample use the local endpoint to accept the outputJson file which is generated by the Revit cloud engine, this help improve the performance.

Troubleshooting

  • Cannot see my BIM 360 projects: Make sure to provision the Forge App Client ID within the BIM 360 Account, learn more here. This requires the Account Admin permission.

  • After installing Github desktop for Windows, on the Git Shell, if you see a error setting certificate verify locations error, use the following:

    git config --global http.sslverify "false"

Limitation

  • BIM 360 Cost Management module needs to be activated to use this App, due to the current limitation of BIM 360 API, user needs to activate Cost Management module, and create Budget Code Template in cost project setting manually. Please check Create BIM360 project, activate Cost Management module, setup project for Cost Management for details.
  • Budget Code is required to create a budget. Currently, a random budget code with specified digits length(set in Price Book) will be automatically generated for each budget.
  • Currently Revit Cloud Worksharing is not supported by the Design Automation. The scenario that this sample demonstrates is applicable only with a file-based Revit model.
  • Client JavaScript requires modern browser.

License

This sample is licensed under the terms of the MIT License. Please see the LICENSE file for full details.

Written by

Zhong Wu @johnonsoftware, Forge Partner Development