Hello,
I have several analysis and am thinking of running them automatically one after another overnight. In the RADIOSS user guide there is one topic that discuss this option, but unfortunately the given example is for linux. As i'm not so good with LINUX and WINDOWS customization, i hope some of you could help me to set the script for WINDOWS 7.
The step for LINUX is as follows:
'How to chain several runs one after each other, automatically?
Previous pageNext page Print this Topic
You can chain several runs one after each other by creating a script file with all the commands to execute; when executing the script, these commands will execute one after each other.
In case of a UNIX or LINUX system, write on the first line of a file:
#! /bin/csh
This means that this script will be read by the csh interpreter. Then write the commands for running the computations.
Below is an example of a so-called “my_script” script file.
#!/bin/csh
setenv RADFLEX_PATH $ALTAIR_HOME/hwsolvers/bin/linux32/
cd case1
s10_p4linux9 -i CASE1_0000.rad
e10_p4linux9 -i CASE1_0001.rad
e10_p4linux9 -i CASE1_0002.rad
cd case2
s10_p4linux9 -i CASE2_0000.rad
e10_p4linux9 -i CASE2_0001.rad
Then give the right for executing this file as follows:
chmod +x my_script
Finally, you can execute the script file with the command:
./my_script'
Thank you very much in advance.