Generally, the RecurDyn Solver process assumes that the rmd file is located in a working directory and the result files are saved in the same working directory.
Therefore, the options for batch analysis that are available with the RecurDyn GUI can be provide on Linux by develop the appropriate script files. For example, the shell file below shows a script that runs a RecurDyn simulation with three different rmd files that are located in a test directory.
---------------------------------------------
mkdir /Test/model1
cp /Test/modelfile1.rmd /Test/model1
cp /Test/test_master.rss /Test/model1
cd /Test/model1
rdsolver modelfile1 test_master
#
mkdir /Test/model2
cp /Test/modelfile2.rmd /Test/model2
cp /Test/test_master.rss /Test/model2
cd /Test/model2
rdsolver modelfile1 test_master
#
mkdir /Test/model3
cp /Test/modelfile3.rmd /Test/model3
cp /Test/test_master.rss /Test/model3
cd /Test/model3
rdsolver modelfile1 test_master
…
…
---------------------------------------------