Today I was trying to open a particularly stubborn DWFx file. In Autodesk Design Review 2013 it would stall completely. ADR 2018 would throw an error, crash or stall as well. I ended up using Autodesk 360 and Navisworks 2019/2020, and these were able to read the model.
However, in the process I found these links to install the very latest version of Autodesk Design Review:
What happens if you enable BIM360 Design Collaboration on a project, but would then like to switch it off? I asked Autodesk this question, and here is part of the response (in italics):
Unfortunately we cannot disable active services on specific projects. Once a service is active, it remains active.
…
If the project is underway and there is information that cannot be moved (such as issues/ RFI’s, etc), then my recommendation would be to make sure no one has access to the Design Collaboration module on the project.
…
If you would like to see a feature implemented that allows the ability to deactivate a service, you can share your thoughts and request it via the Ideas Board using this link: https://forums.autodesk.com/t5/bim-360-ideas/idb-p/2032
In light of the above, if you do want to make sure no one has access to Design Collaboration, switch it off per-person in the Project Members page as shown below:
Logout from Autodesk services prior to starting Desktop Connector. You can do this easily with the sign out option at top-right of Autodesk Desktop App.
Through Task Manager – Details, attempt to “End Task” on these. Probably AdskLicensingService.exe won’t close.
Then try to start Autodesk Desktop Connector again from the Start Menu.
You can monitor starting of Desktop Connector in the tray.
Having recently installed some more storage hardware, and previously posted about moving folders with symbolic links, I then decided to move my BIM 360 Glue cache folder and Navisworks Cache folder to a secondary hard drive. I did this using symbolic links.
You need to:
start a Command Prompt as Administrator
use the commands shown below
Moving BIM 360 Glue cache storage location:
if exist "%localappdata%\Autodesk\Bim360Glue 2016\LocalCache" rename "%localappdata%\Autodesk\Bim360Glue 2016\LocalCache" bim360glue2016.old
mklink /d "%localappdata%\Autodesk\Bim360Glue 2016\LocalCache" R:\BIM360Glue2016
if not exist R:\BIM360Glue2016 MD R:\BIM360Glue2016
robocopy /mir "%localappdata%\Autodesk\Bim360Glue 2016\bim360glue2016.old" R:\BIM360Glue2016\
Moving Navisworks cache storage location:
if exist "%localappdata%\Autodesk\Navisworks 2019\LocalCache" rename "%localappdata%\Autodesk\Navisworks 2019\LocalCache" Navisworks2019Cache.old
mklink /d "%localappdata%\Autodesk\Navisworks 2019\LocalCache" R:\Navisworks2019Cache
if not exist R:\Navisworks2019Cache MD R:\Navisworks2019Cache
robocopy /mir "%localappdata%\Autodesk\Navisworks 2019\Navisworks2019Cache.old" R:\Navisworks2019Cache\
After you have run the scripts above, you can delete the old folders with the .old suffix (Navisworks example shown below).
It is extremely easy to reduce the size of a point cloud dataset using Recap. “Decimation” is the process of discarding points from the data to improve performance and reduce disk usage.
With the release of point cloud support in Revizto, you can now bring a point cloud into the Revizto platform in a number of ways:
Export from Navisworks
Export from Revit
Import points directly in RCP or RCS format
Once the reality capture model has been added to Revizto, you sync it to the cloud. From there, you can download and view the point cloud on your iPad, and of course you can start creating issues that relate to the captured condition on site. You can even overlay 2D drawings onto the reality capture data.
The decimation process is very easy :
Open your Recap file (add scans and index first if necessary)
Click Export
Give your file a name
Click the settings button
Move the slider to adjust your point decimation – you might use around 50mm decimation for a lot of site applications.
Save the file
There are other considerations, such as:
How can you set up coordinate systems to work with Revit, Navisworks and Revizto?
These will be considered in more detail in another post.
If you have Desktop Connector installed, you probably realise you can ‘upload’ Revit models and other files to BIM 360 Docs by dragging and dropping to the folder in Windows Explorer (using Desktop Connector). However, when you try and link this using the BIM 360 shortcut in Revit, you might not be able to see the file…
Here is a workaround that may allow you to link a non-initiated Revit model into your Revit file:
Ensure you have Autodesk Desktop Connector installed
Start Link Revit command from the ribbon
Update: Click on the Address drop down
Click on This PC
Browse to BIM 360 from the window below:
Select the file (non initiated) that you want to link
You should get the BIM 360 prefix in Manage Links:
Here is a video of this process (with audio, This PC – BIM 360 workflow):
I have developed a working BIM360 to on-premises backup mechanism. There were a few different ways to go…
I initially considered:
Hacking Windows Explorer to touch the files in the BIM 360 node and try and trigger the BIM360 Docs download and copy to local PC or network location
Developing a Forge app that essentially pulls the desired models out of the BIM 360 cloud to desired location?
In the end, I decided to use the Revit API (Dynamo and Python), along with VirtualBuiltApp, to essentially reverse engineer a folder structure from the local CollaborationCache folder. These ideas are hinted at here.
In simple terms, the BIM 360 Docs on-premises backup workflow is:
Create a super federated BIM 360 model (with all other BIM 360 models linked into it)
A Dynamo script reloads all links in order to cache them locally
The same script interrogates, then determines the target file name and folder from VirtualBuiltApp
Dynamo then copies the files into their ‘backup’ location on the local network
Some more detail is presented below:
A) Cache Cleaner CMD Script (may not really be necessary, as the ‘reload’ should overwrite superseded cache anyway):
Kill Revit if Open… be careful of below steps, particularly if Revit has crashed recently. You might need these local copies 🙂
cd "%LOCALAPPDATA%\Autodesk\Revit\Autodesk Revit 2018"
cd CollaborationCache
rmdir oldCache
mkdir oldCache
for /d %i in (*) do move "%~i" oldCache
B) Manual steps to setup Revit model environment to run the script:
Open Revit
Open Federated BIM 360 file (worksets closed)
Unload all links
Open all Worksets
C) Dynamo Script:
Run Dynamo (Python) script that reloads and unloads all links (this collects .rvt into cache). Key Python commands to use are: RevitLinkType.Load() and RevitLinkType.Unload(None).
Potential Problems:
Coordination Monitor alert, no longer exists
Instance of link needs Coordination Review
“Some numerical data within the imported file was out of range. This numerical data has been truncated.”
“Geometry in the file … has extents greater than 20 miles (33km).”