Showing posts with label Navisworks. Show all posts
Showing posts with label Navisworks. Show all posts

Wednesday, November 2, 2022

Navisworks - Tips for Updating Models

A common question I get from new Navisworks users has to do with updating models. They often complain to me that when they have Navisworks open, they can't update their Revit NWC files. So, if you need to continually append models to Navisworks and you don't want to shut down Navisworks, this fix is for you.

Under Options Editor > Model > Performance, make sure that the "Close NWC/NWD files on load" is checked.


This will allow you to overwrite the NWC file while that file is open in Navisworks.



Friday, June 28, 2019

Navisworks 2018 Database Link w/ Excel - Primer

For this demo, I am going to use the Gatehouse sample file that ships with Navisworks 2018. You can find the files C:\Program Files\Autodesk\Navisworks Manage 2018\Samples\Gatehouse\. If you have a newer or older version of Navisworks, the process basically works the same.

The Process

In order to connect an external data source such as an Excel spreadsheet or an Access database to a Navisworks model, we need to configure a DataTools within Navisworks. We will then be configuring the database connection. When working with the DataTools in Navisworks, there are a few very important rules to keep in mind. If you are using a 32-bit workstation, then you need to utilize the 32-bit ODBC drivers. 64-bit workstations need to utilize 64-bit ODBC drivers. It is also important to note, that the link to Navisworks is one way. Data can be linked and viewed inside of Navisworks, but the data can’t be updated within Navisworks.

My workstations are all Windows 10 64-bit workstations. My PC’s are using Microsoft Office 365. My Mac running Windows 10 64-bit on parallels using Office 365. The MS Access 2013 runtime drivers can be downloaded here: https://www.microsoft.com/en-us/download/confirmation.aspx?id=39358 If you are using an older version of office the MS Access 2010 drivers can be downloaded from here: https://www.microsoft.com/en-us/download/details.aspx?id=13255.

Data Source Setup

The Gatehouse project includes a sample Excel spreadsheet which is why I am using it as an example. The first thing I did to the file was add three column headers to identify the “Name”, “Date” and “Notes” columns (Figure 1). We are creating these labels to identify the columns.
Figure 1 - Data Source with column labels

Navisworks Setup

Our next step, you need to have the ODBC drivers installed, otherwise you will not have the data connection option. With that done, open Navisworks and the Navisworks model that you want to connect your external data source to. In this example, I am going to open the gatehouse model as indicated above. In Navisworks, on the Home tab, Project panel, click on the File Options button (Figure 2). This will open the File Options dialog.
2016 01 08 13 31 10
Figure 2 – Accessing the File Options


In the File Options dialog, we will start the process of configure our database connection (Figure 3). As shown in Figure 1, click the DataTools tab and then click the New button to create a new DataTools link to open the New Link dialog.
2016 01 08 13 32 06
 Figure 3 - File Options dialog for creating a new DataTools link

In the New Link dialog (Figure 4), we first want to name the new link connection we are creating. For this example, I am using the name “Gatehouse Example”. We then need to select the ODBC Driver Connection type. We are going to be working with a Microsoft Excel data source, so select the “Microsoft Excel Driver (*.xls, *.xlsx, )” driver.  Then click the Setup button to open the ODBC Microsoft Excel Setup dialog.
2016 01 08 14 05 56
Figure 4 - New Database Connection Link dialog
In the ODBC Microsoft Excel Setup dialog (Figure 5), we will select the version of Excel data file and select the file we will be using. I am using Office 365 so selected  “Excel 12” from the Version: dropdown. Select the version of Excel you are using to edit the spreadsheet. Then click on the Select Workbook button to find and select the Excel data file. This connects the excel data file with Navisworks. If you have the default installation of Navisworks 2018 and are using the Gatehouse example, you can find the file at: C:\Program Files\Autodesk\Navisworks Manage 2018\Samples\gatehouse\. Just make sure this file has the headers we added in the section above entitled Data Source Setup.

After you have selected your excel file, click OK to close the ODBC Microsoft Excel Setup dialog.

If you are having issues with your Database Link connecting to Excel, be sure to check the Version of Excel database that you are using.
2016 01 08 14 53 56
Figure 5 - ODBC Setup Dialog for Excel
We are now back to the Edit Link dialog box (Figure 6). If we look in the connection section portion of the dialog, under the ODBC Driver selection, you can see that the connection has been updated. We can now complete the SQL String and Fields section of the dialog.
2016 01 08 15 00 42
Figure 6 - Edit Link


SQL String

The SQL string is used to specify how the database will be queried. I have found this part of configuring the database connection to be the most difficult. Fortunately, there are a lot of external resources available for creating SQL strings. My personal recommendation is to keep it as simple as possible.

The code that we will be creating for this example is:
SELECT * FROM [Gatehouse_Layerinfo$] WHERE "Name" = %prop("Item","Layer");

We start out our SQL String with SELECT * FROM The “*” is actually a field name, in this particular example, I am using the wildcard to query all the fields.

[Gatehouse_Layerinfo$] This is the Excel sheet tab name (Figure 7) that we want to query in our Excel spreadsheet. The Excel sheet tab name must be spelled just as it is in Excel and should be followed with the “$”.
Figure 7

WHERE "Name" = %prop("Item","Layer"); This is where we are going to define what data we are going to bring from the Excel spreadsheet into Navisworks. For our example, we are going to conditional match the value Layer property data for each element that can be found in the Item tab and match that with a value in the Name column of the Excel spreadsheet.

“Name” refers to column that we will be searching in the Excel file.
%prop is a SQL command that allow you to retrieve model data for conditional matching.
("Item","Layer"); “Item” refers to the Item tab in the Properties Window. “Layer” refers to the internal file property, in this example, the Layer (Figure 8).
2016 01 08 15 09 53
Figure 8 – Navisworks Properties Window
In the SQL String section of the Edit Link dialog, enter the following string of text.
SELECT * FROM [Gatehouse_Layerinfo$] WHERE "Name" = %prop("Item","Layer");
The next step in the process is to specify what information we are going to display in the Properties window. In the Field section of the Edit Link dialog (Figure 9), we are going to specify what Field names to list and the display name to use. Using Figure 9 as a reference, add the Field and Display Names.

Note that we are having the Field Name “Name” display as “Layer” in Navisworks. The Name column in our Excel spreadsheet refers to an AutoCAD Layer and rather than changing the column name in Excel, we can have Navisworks use a different Display Name.
Figure 9 - Inserting the Field and Display Names


After you have entering the Field Names, click OK to close the Edit Link dialog box. Make sure that the “Gatehouse Example” DataTools Link that we just created is checked. This will enable it in our current session. Click OK to close the File Options dialog.
2016 01 08 15 15 47
Figure 10 - DataTools
When you select an object in Navisworks, note that the Properties Window has a new tab called “Gatehouse”. That is the name of the DataTools link that we created. Figure 11 shows an example where we have selected a wall and in the Gatehouse tab in the Properties window provides us with the Layer, Finish and Note information from the Excel data file.

2016 01 08 15 18 03
Figure 11 - Foundation Selected with External Data Displayed

If you have gotten this far and it is not working, a lot can go wrong. The first thing to check is the SQL String text. Then check to make sure that your using the correct version of Excel, which might be different than the selection, I made in Figure 5. Also, make sure that the Excel file you are trying to access in Navisworks is not open. That can cause issues as well.

This Gatehouse example is not the most robust example around, but it is a great starting point. Start with something simple so you can make sure that your database connection is working, before trying it on a more complicated project with a lot of data to query. As many of you are aware, CAD and BIM applications are not great data entry applications, so having this type of data linking capabilities is very beneficial.

Thursday, June 27, 2019

Navisworks - Multiple Iterations and Locked Files

While working in Navisworks and you find that you are updating your models frequently, you have probably ran into the issue of having to close your Navisworks model in order to update your appended model. There is a quick way to get around this.

In the Options EditorModel > Performance, make sure “Close NWC/NWD Files on Load” is checked. This will now allow you to overwrite NWC files without unloading them in your NWF file. So when you have an updated NWC that has overwritten the existing file, you just need to refresh Navisworks for the new model(s) to load.


Monday, January 28, 2019

Navisworks Redline Tools

I don't know if it is just me, but it does not seem like Autodesk is doing much development around Navisworks. One new feature I would really like to see added is a markup stamp. This would help accelerate markup sessions.

Anyone know of a 3rd party app that does this inside Navis?

Tuesday, September 6, 2016

AU 2016 registration is now open



AU 2016 registration is now open


Register now for AU 2016 and save US$425
Click here to view this email in your web browser.



Autodesk University

Explore What's New at AU 2016

You know AU gives you an edge.
Now take it to the next level.
AU 2016 is right around the corner, with all-new experiences in breakthrough technologies, real-world applications for driving change, and plenty of inspiration for the year ahead.
TELL ME MORE
  Reconnect with peers
    & expand your network
  Go further with 650+
    sessions & certifications
  Explore cutting edge
    design & industry trends
  Give us feedback on
    future directions
SAVE US$425 WHEN YOU REGISTER BY OCT. 10
3-Day Pass US$1,750*
Regularly US$2,175
SIGN ME UP
Facebook Twitter LinkedIn Instagram Blog
© 2016 Autodesk, Inc. All rights reserved. |
Legal Notices & Trademarks | Privacy | Autodesk
Autodesk, Inc. • 111 McInnis Parkway • San Rafael, CA 94903
Manage your email preferences
*Students and educators are eligible for a special discounted rate of US$1,175. In order to receive this price you must register with an .edu email account or provide some other proof of educational affiliation.
If you do not want to receive commercial emails from Autodesk, please click here to unsubscribe.
Please do not reply to this email. Replies to this email will not be responded to or read.
Autodesk and the Autodesk logo are registered trademarks or trademarks of Autodesk, Inc., and/or its subsidiaries and/or affiliates in the USA and/or other countries. All other brand names, product names, or trademarks belong to their respective holders. Autodesk reserves the right to alter product and services offerings, and specifications and pricing at any time without notice, and is not responsible for typographical or graphical errors that may appear in this document.
 
Please note: Florida has very broad public record laws. Most written communications to or from college employees and students are public records and available to the public and media upon request. Your e-mail communications may therefore be subject to public disclosure.

Friday, August 12, 2016

RTC Europe 2016 - Why You Should Attend?



RTC Europe 2016 Why You Should Attend? Can't view this email? View it online.
RTC Europe 2016
Why You Should Attend?

Alfandega Centro de Congressos, Porto, Portugal
Thursday 20 - Saturday 22 October 2016
Dear Patrick,
Wow, what a year it has been! We are headed to the final quarter of the year and along with it, the final RTC Event for 2016 which will be held in Porto, Portugal. As of tomorrow, we are exactly 10 weeks away from making our way to Porto.
RTC Europe is going to be a jam-packed 3 days with great sessions and a fantastic line-up of speakers, all individually selected from the record number of abstracts that were submitted. We have sessions from speakers who have made their way to the list of top 10 speakers, based on feedback from our past delegates. Some of these include HÃ¥vard Vasshaug, Marcello Sgambelluri, Margarida Barbosa and many more! You can find more information on the schedule here and a list of speakers here.
In collaboration with CADLearning and Ascent we’ve also organised for certification exams. As a RTC Europe delegate you have the chance to take a certification exam for FREE. There are slots available throughout the conference with the first exam sessions taking place on the Wednesday, so be rest assured, you will be able to find a slot to suit your schedule.

  • Do you want to learn about the ease of implementation of sloped framing and how global parameters can support you in your workflow?
  • Would you like to find out how to reach MEP collaboration nirvana?
  • Learn about all the exciting ways Dynamo can support you and how to utilise it to harness the performance data in your models?
  • Learn how to create schedule fields that calculate the line items percentage in a Revit schedule, strategies for quick deployment of specific tools, API best practices, and urban planning workflows that work!
  • Stay on top of recent technological developments and learn how desktop applications and utilities can interact with cloud based services like Forge.
  • See the exciting possibilities for generative design using Project Fractal.
  • Learn hands-on how to experience true collaboration applying Integrated BIM and make information management a key priority.
  • Experience all the exciting Reality Capture Technologies for design, planning and construction applications.
And if all that wasn’t enough, this year for the very first time we are bringing the Building Content Summit (BCS) to Europe. This will take place on Wednesday 19th October preceding RTC Europe. At BCS you will have the opportunity to raise your voice and let manufacturers and content creators know what you need to see in manufacturers BIM content.   
REGISTER NOW
Today’s world is constantly on the move, and the rate at which it’s changing is so profound that you can’t trust your eyes to show you reality, because what you perceive as reality is actually already history. The presentations you will see at RTC Europe 2016 will challenge the assumptions about the world we live in and the future we’re heading for by carefully examining the significance of global trends.
You’ll discover how these trends affect and will continue to affect our personal and professional lives, our children, and even our definition of intelligence. You will experience a sense of how we can come to realise the long-term benefits of adapting to our current state of societal progress, and how our world will ultimately benefit.
You'll be amazed at the difference three days can make. For more detail, visit www.rtcevents.com/rtc2016eur and register today!
Kind Regards,
Wesley Benn
Event Chairman, RTC Europe

Connect with us

facebook Facebook twitter Twitter
youtube YouTube linkedin LinkedIn
email secretary@rtcevents.com phone (+31) 158-898-635
link rtcevents.com/rtceur calendar Add Event to Calendar
If you no longer wish to receive emails relating to RTC Europe or any further correspondence from RTC Events Management please click unsubscribe.

RTC Europe Foundation
Kromstraat 10
NL - 2611 ER Delft, Netherlands

2016 © RTC Events Management

Is anyone using Deep Space for analytics? https://www.deepspacesync.com/