The following steps cover the simplest way to download, install and run OpenRadioss from pre-compiled binaries with scripts
How to download and install OpenRadioss
todownload the latest pre-compiled OpenRadioss binaries: (download to /home/user)
...
This will create a directory called ‘OpenRadioss’ containing the executables
Running OpenRadioss
The script below can be used to run a Radioss model (if OpenRadioss has been extracted into OpenRadioss directory in /home/user as described above)
...
Code Block |
---|
export OPENRADIOSS_PATH=$HOME/OpenRadioss echo $OPENRADIOSS_PATH echo $HOME export RAD_CFG_PATH=$HOME/OpenRadioss/hm_cfg_files echo $RAD_CFG_PATH export RAD_H3D_PATH=$HOME/OpenRadioss/extlib/h3d/lib/linux64 echo $RAD_H3D_PATH export OMP_STACKSIZE=400m export LD_LIBRARY_PATH=$HOME/OpenRadioss/extlib/hm_reader/linux64/:$HOME/OpenRadioss/extlib/h3d/lib/linux64/:$LD_LIBRARY_PATH echo $LD_LIBRARY_PATH echo "**Run Starter**" myjobname=$(echo "$1" | rev | cut -c10- | rev) echo $myjobname "running in OpenRadioss" $HOME/OpenRadioss/exec/starter_linux64_gf -i $myjobname"_0000.rad" -nt $2 echo "**Run Engine**" $HOME/OpenRadioss/exec/engine_linux64_gf -i $myjobname"_0001.rad" -nt $2 echo "Done" |
see also: pythonPython/tk guis for job submission, anim-vtk conversion and T01-csv conversion