Changeset 2906 for palm/trunk/SCRIPTS/palmrun
- Timestamp:
- Mar 19, 2018 8:56:40 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmrun
r2834 r2906 27 27 # ----------------- 28 28 # $Id: palmrun 2718 2018-01-02 08:49:38Z maronga $ 29 # Introduction of new ENVIRONMENT variables read_svf and write_svf to consider 30 # the possible output or input of sky view factors 31 # 32 # 2718 2018-01-02 08:49:38Z maronga 29 33 # "fname" renamed to "jobname" 30 34 # … … 180 184 project_account="" 181 185 queue=none 186 read_svf="" 182 187 restart_run=false 183 188 return_address="" … … 199 204 working_directory=`pwd` 200 205 write_binary="" 206 write_svf="" 201 207 TOPT="" 202 208 … … 384 390 else 385 391 write_binary=false 392 fi 393 394 # SET VARIABLE TO ACTIVATE WRITING OF SVF DATA 395 if [[ $(echo $activation_string_list | grep -c "svfout") != 0 ]] 396 then 397 write_svf=true 398 else 399 write_svf=false 400 fi 401 402 # SET VARIABLE TO ACTIVATE READING OF SVF DATA 403 if [[ $(echo $activation_string_list | grep -c "svfin") != 0 ]] 404 then 405 read_svf=true 406 else 407 read_svf=false 386 408 fi 387 409 … … 2061 2083 cat > ENVPAR << EOF 2062 2084 &envpar run_identifier = '$jobname', host = '$host_configuration', 2063 write_binary = .${write_binary}., tasks_per_node = $tasks_per_node, 2085 write_svf = .${write_svf}., write_binary = .${write_binary}., 2086 read_svf = .${read_svf}., tasks_per_node = $tasks_per_node, 2064 2087 maximum_parallel_io_streams = $maximum_parallel_io_streams, 2065 2088 maximum_cpu_time_allowed = ${cpumax}.,
Note: See TracChangeset
for help on using the changeset viewer.