Installation¶
How to install?¶
Clone RAVEN¶
Open a terminal window and cd into the folder where you want to install RAVEN (e.g., projects)
[~]> mkdir projects
[~]> cd projects
[~/projects]> git clone https://github.com/idaholab/raven.git
[~/projects]> cd raven
Install RAVEN Plugins¶
To register BayCal as a plugin for RAVEN and make its components accessible, run the script
raven/scripts/install_plugins.py -s /abs/path/to/BayCal
To install all officially-supported plugins, the shortcut option -a or –all can be used:
raven/scripts/install_plugins.py -a
At this stage, RAVEN will import all the plugins within that directory and perform some error checking.
Install RAVEN libraries¶
cd raven
./scripts/establish_conda_env.sh --install
Compiling RAVEN¶
[~/projects/raven]> ./build_raven
In case the RAVEN libraries have been installed without the `conda`
installation package,
(see install_raven), RAVEN needs to be built with the following option:
[~/projects/raven]> ./build_raven --skip-conda
Test RAVEN installation¶
[~/projects/raven]> ./run_tests -j2
Using the plugin in RAVEN¶
Once registered, new external models can be used in RAVEN by using the model subtype defined by your plugin name. For example, you can access BayCal model in the RAVEN input as
<Models>
...
<ExternalModel name='myName' subType='BayCal.LikelihoodModel'>
...
</ExternalModel>
...
</Models>
Issues¶
Please refer to the following links if there is any issue happening during the installation process.
Install RAVEN, please refer to install_raven
Install RAVEN Plugins, i.e., BayCal, please refer to install_raven_plugins