-
Notifications
You must be signed in to change notification settings - Fork 12
Install
ℹ️ Updated to BlenderFDS 6.0.x
This wiki page describes how to set up your BlenderFDS installation.
First, take a look at the Release notes page to get the required software versions for:
- the Blender application hosting the BlenderFDS addon, other versions may not work;
- the target NIST FDS solver, other versions may fail to read the exported cases.
Then, install the required version of Blender on your computer, as explained in the relevant Blender documentation.
Being so specific in scope, the BlenderFDS addon is not distributed as an official Blender addon. To begin using this plugin, you need to download, install, and enable the latest released version as follows.
Go to the release page
and click on the blenderfds.zip package of the latest stable release.
The release zipped file is downloaded to your computer.

To install the just downloaded release:
- launch Blender;
- open the
Preferencespanel by selectingEdit > Preferencesin the main menu; - select the
Add-onssection in thePreferencespanel; - click on the
Installbutton and use the file browser to select theblenderfds.zipyou downloaded in the previous step; - enable the BlenderFDS addon by checking the box to the left;

The BlenderFDS functionality should become immediately available.
If the addon does not activate, check the console window for any errors that may have occurred. In this case, please file an issue on the issue tracker.
By clicking on the arrow at the left of the addon in the Preferences > Add-ons panel,
you can see the relevant information and links.
In the same section, you find the BlenderFDS preferences.
Click on the Load Default BlenderFDS Settings button to complete the setup.
The default BlenderFDS startup file is loaded, and the external commands for your platform updated.

If you have a working internet connection, you can rapidly upgrade the BlenderFDS addon like this:
- launch Blender;
- open the
Preferencespanel by selectingEdit > Preferencesin the main menu; - select the
Add-onssection in thePreferencespanel and search for theBlenderFDSaddon; - click on the
Upgrade Addonbutton, then refresh the choices, and select the new version that you wish to install.
The upgraded BlenderFDS version becomes available after Blender restart.

If you do not have a working internet connection, or if something goes wrong, you can always click on the
Removebutton in the same panel to delete the addon from your computer. Then you can reinstall from scratch a new version.
If the upgraded addon does not activate, check the console window for any errors that may have occurred. In this case, please file an issue on the issue tracker.
If you want to stay on the edge of development to test brand new features,
instead of installing a stable version, you can clone the firetools/blenderfds repository
to your local Blender addons folder.
Beware that you need to be Git savvy to install a live development version.
This Blender documentation page specifies the default directories for Blender application and settings, depending on the operating system.
For example, the user's addons are currently stored in:
- on Linux:
$HOME/.config/blender/3.2/scripts/addons/(in my case the$HOMEvariable contains the/home/egissi/directory) - on macOS:
/Users/$USER/Library/Application Support/Blender/3.2/scripts/addons/ - on Windows:
%USERPROFILE%\AppData\Roaming\Blender Foundation\Blender\3.2\scripts\addons\
This addons directory is the right location for the clone of the firetools/blenderfds repository.
Note that, if installing the first addon yourself, you may need to create the
addonsdirectory and its tree.
Next, with the Git tool already installed, get into your addons directory
and clone the blenderfds repository as follows:
$ cd ~/Library/ApplicationSupport/Blender/3.2/scripts/addons/
$ git clone git@github.com:firetools/blenderfds.gitTo enable the just cloned addon:
- launch Blender; if Blender is already open, first close it, then reopen;
- open the
Preferencespanel by selectingEdit > Preferencesin the main menu; - select the
Add-onssection in thePreferencespanel; - search and enable the BlenderFDS addon by checking the box to the right;

The BlenderFDS functionality should become immediately available.
If the addon does not activate, check the console window for any errors that may have occurred. In this case, please file an issue on the issue tracker.
By clicking on the arrow at the left of the addon in the Preferences > Add-ons panel,
you can see the relevant information and links.
In the same section, you find the BlenderFDS preferences.
Click on the Load Default BlenderFDS Settings button to complete the setup.

As your addon is now hosted on a git repository, keep your repo synchronized to the development version by typing:
$ cd ~/Library/ApplicationSupport/Blender/3.2/scripts/addons/blenderfds/
$ git pull