Skip to content

Titan2D 4.0.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@nsimakov nsimakov released this 23 Jun 18:40

Mac OS X binaries are on the way

Installation instruction from binaries

#download
wget https://github.com/TITAN2D/titan2d/releases/download/v4.0.0/titan2d-v4.0.0-Linux-64bit.tar.gz
#untar
tar xvzf titan2d-v4.0.0-Linux-64bit.tar.gz

To test:

#get to example directory
cd titan2d-v4.0.0/share/titan2d_examples/colimafinemini/Coulomb

#execute with 2 threads
../../../../bin/titan -nt 2 input.py

Compiling with help of titan2d_dep, package containing all non-standard dependencies

#download dependencies package
wget https://github.com/TITAN2D/titan2d/releases/download/v4.0.0/titan2d_dep-v4.0.0.tar.gz
tar xvzf titan2d_dep.tar.gz
wget https://github.com/TITAN2D/titan2d/releases/download/v4.0.0/titan2d-v4.0.0-src.tar.gz
tar xvzf titan2d-v4.0.0-src.tar.gz

#compile titan
mkdir titan2d-v4.0.0-bld
cd titan2d-v4.0.0-bld
../titan2d-v4.0.0/configure --prefix=/full/path/to/install --enable-openmp --with-titan2d-dep=/full/path/to/titan2d_dep
#--enable-portable will copy titan2d_dep to installation folder and thus original titan2d_dep can be removed
make -j 4
make install