Switch language:
This is an old revision of the document!
FFSM, as any model developed in C++, must be firstly compiled for the specific environment in use. For windows users a pre-compiled version of the model is provided in a self-installation package that take care of installing the dependencies.
Just run the installer, choose the components to install (next Figure) and the FFSM program will be available within the installed programs.
For Linux users pre-compiled packages can be released at user's request.
Clicking on the FFSM icon allows the software to open in GUI mode (next Figure). From here we can load a new data input file (or leave the default one at data/ffsmInput.ods
) and start the simulation with the “play” button”.
We will then be presented with a pop-up to choose between the available scenarios in the loaded input file and continue.
During the proceeding of the simulation we can observe its status loading any of the layers using the drop-down menu, analyse the live logs or retrieve any pixel detail right clicking on it.
At any time we can either pause the simulation or abort it.
At the end of the simulation, provided that we have a compatible spreadsheet application with macro enabled, we can click on the results button to analyse the results directly on it.
FFSM has also a command line mode that is activable using the DOS or unix prompt.
It accepts the following options:
Short option version | Long option version | Description |
---|---|---|
-h | –help | Print the help |
-c | –console | Run in console mode (no gui, default: false) |
-i [input_file_name] | –input_file [input_file_name] | Input file (relative path, default: 'data/ffsmInput.ods') |
-s [scenario_name] | –scenario [scenario_name] | Scenario name (default: the first defined in the input file) |
Command line mode is very useful for unattended simulations of the model, e.g. when working on sensitivity analysis that requires the run of many similar scenarios.
In such case it is advisable to prepare the desired scenarios in the input file and then run the model sequentially in a batch mode changing only the -s switch.
While the program use a single process, in Linux you can use the following scripts to run several scenarios in parallel, hence benefitting of modern multi-core processes:
#!/bin/bash #--------------------------------------- # Shell script to run a single ffsm scenario, where the scenario name is the first argument. #--------------------------------------- ./ffsm -c -s $1 > logs/${1}.txt echo "Ended running scenario " $1
#!/bin/bash #--------------------------------------- # Shell script to run ffsm scenarios #--------------------------------------- # Safe parallel.. ./ffsm -c -s scenarioName1 > logs/scenarioName1.txt & ./ffsm -c -s scenarioName2 > logs/scenarioName2.txt & # Running the same scenario (e.g. for repetitions) in parallel is safe as long as newRandomSeed # is set to true and outputSingleFile is set to false.. for i in {1..30} do ./ffsm -c -s randomSpace 1> /dev/null 2> /dev/null & done # A better approach to run scenarios in parallel is using GNU parallel: you can set the maximum # number of processes and then the jobs are put in a queue. # In that case run this script as: # parallel --jobs <n of jobs> -a runscenarios.sh # and put something like this in the script ./run_single_scenario.sh 'scenarioName1' ./run_single_scenario.sh 'scenarioName2'
The overall FFSM development environment requires a little bit of efforts in its start-up, due to the many tools used, but on the other hand once all these tools has been set-up it results in a very powerful one.
The FFSM development itself is done using Qt Creator, a multi-platform Integrated Development Environment (IDE) based on the popular Qt libraries.
This section contains detailed instructions on how to get and install the IDE and all the necessary prerequisites, in both Windows or Linux environment. For the former, third party libraries (IPOPT, Adol-C, ColPack) are already available within the FFSM source code repository, so the instruction for their installation refers only to the case that a new version of them is released and the user want to upgrade to it.
The following packages and their prerequisites should be installed: libqt5-*, qtcreator, qmake, libatlas-base-dev, libatlas-dev, gfortran, zlib1g-dev
../configure --with-blas="-L/usr/lib/atlas-base/atlas -lblas" --with-lapack="-L/usr/lib/atlas-base/atlas -llapack" --prefix="/usr" make sudo make install # New 2013/11/19: on ubuntu 13.10 64bit and ipopt 3.11.6 run the configure as: ../configure --with-blas="-L/usr/lib/atlas-base/atlas -lblas" --with-lapack="-L/usr/lib/atlas-base/atlas -llapack" --prefix="/usr" LDFLAGS=-Wl,--no-as-needed
./configure –prefix=/usr make sudo make install
Notes: if you get an error about libtool version mismatch run “autoreconf –force –install” before configure (http://stackoverflow.com/questions/3096989/libtool-version-mismatch-error)
./configure --enable-docexa --enable-addexa --enable-sparse –prefix=/usr make sudo make install
New 2013/11/19: On 64 bits Linux, symlink all libadoc.* libraries from /usr/lib64 to /usr/lib, e.g. ln -s ../lib64/libadolc.so.1 libadolc.so.1.1.1
Notes: If you have an error about libtool version mismatch run “autoreconf –force –install” before configure (http://stackoverflow.com/questions/3096989/libtool-version-mismatch-error - https://dev.openwrt.org/ticket/10827 )
git clone git clone https://github.com/LEFNancy/ffsm_pp.git
Note: Git repository is currently set private untill we remove from it input data for which we do not have the copyright and hence we can't publicily release.
MinGW is the windows version of the g++ compiler, together with a minimal unix-style environment that allow to compile unix programs natively in windows.
Please follow the instructions below:
Alternative version for installing the Qt libraries from source
cd /c/Qt/5.x.x configure.exe -qt-zlib -opensource -release -platform win32-g++ mingw32-make
Notes: These instructions were written for the now obsolete Qt4. We didn't tested them with the newer Qt5 that are required by the model, but we think the procedure should be similar. Qt 4.8.3 had a know bug that required adding QMAKE_RCC = $$[QT_INSTALL_BINS]$${DIR_SEPARATOR}rcc.exe after the QMAKE_IDC line in C:\Qt\4.8.3\mkspecs\win32-g++\qmake.conf
cd /c/ipopt/ mkdir build cd build ../configure make make install
./configure –prefix=/usr make g++ -shared -Wl,-soname,libColPack.so -o libColPack.so <list of object files>
Notes: If linking problems arise with method 2, copy also all the other libColPack.* libraries to [FFSM_ROOT]\src\ThirdParty\win32\lib\. ColPack compile but doesn't work with ADOL-C in MinGW g++ 4.7, so for now it must be retained MinGW g++ 4.6
cd /c/ADOL-C cd ADOL-C ln -s src adolc cd ..
./configure --enable-docexa --enable-addexa --enable-sparse –prefix=/usr make
./configure --enable-docexa --enable-addexa --enable-sparse --prefix=/usr –with-colpack=/usr make
Notes: If you have an error about libtool version mismatch run “autoreconf –force –install” before configure (http://stackoverflow.com/questions/3096989/libtool-version-mismatch-error). Tplease consider that the ln -s command in preparing the ADOL-C compilation actually copys, not links, the two folders.