- Timestamp:
- Nov 28, 2012 4:18:43 PM (12 years ago)
- Location:
- palm/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/mbuild
r1047 r1069 20 20 # Current revisions: 21 21 # ----------------- 22 # added copy of nc2vdf tools to remote host 23 # 22 24 # 23 25 # Former revisions: … … 1284 1286 # KOENNEN DOLLAR-ZEICHEN NICHT BENUTZT WERDEN 1285 1287 remote_ud=`echo $remote_ud | sed 's/\$HOME\///'` 1286 /bin/scp batch_scp mbuild mrun process_dvr_output .dvrserver.config subjob ${remote_username}@${remote_addres}:${remote_ud}/../SCRIPTS > /dev/null1287 else 1288 scp batch_scp mbuild mrun process_dvr_output .dvrserver.config subjob ${remote_username}@${remote_addres}:${remote_ud}/../SCRIPTS > /dev/null1288 /bin/scp batch_scp mbuild mrun process_dvr_output .dvrserver.config subjob batch_nc2vdf nc2vdf nc2vdf.ncl nc2vdf.config ${remote_username}@${remote_addres}:${remote_ud}/../SCRIPTS > /dev/null 1289 else 1290 scp batch_scp mbuild mrun process_dvr_output .dvrserver.config subjob batch_nc2vdf nc2vdf nc2vdf.ncl nc2vdf.config ${remote_username}@${remote_addres}:${remote_ud}/../SCRIPTS > /dev/null 1289 1291 fi 1290 1292 -
palm/trunk/SCRIPTS/mrun
r1059 r1069 22 22 # Current revisions: 23 23 # ----------------- 24 # 24 # bugfix: coupling mode was always set to mpi2, typos removed 25 25 26 # 26 27 # Former revisions: … … 559 560 while read line 560 561 do 561 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" && ( $(echo $line | cut -d" " -s -f4) = $cond1 || $(echo $line | cut -d" " -s -f4) = $cond2 )]]562 if [[ "$line" != "" && $(echo $line | cut -c1) != "#" && $(echo $line | cut -d" " -s -f4) = $cond1 && $(echo $line | cut -d" " -s -f4) = $cond2 ]] 562 563 then 563 564 coupled_mode="mpi2" … … 2240 2241 then 2241 2242 skip_check=true 2242 reason="restart run. )"2243 reason="restart run." 2243 2244 fi 2244 2245 … … 2426 2427 locat=normal; exit 2427 2428 else 2428 printf "\n *** Skipping parameter file check."2429 printf "\n *** skipping parameter file check." 2429 2430 2430 2431 fi -
palm/trunk/SOURCE/check_parameters.f90
r1066 r1069 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! allow usage of topography in combination with cloud physics 22 23 ! 23 24 ! Former revisions: … … 558 559 WRITE( action, '(A)' ) 'galilei_transformation = .TRUE.' 559 560 ENDIF 560 IF ( cloud_physics ) THEN561 WRITE( action, '(A)' ) 'cloud_physics = .TRUE.'562 ENDIF563 561 IF ( cloud_droplets ) THEN 564 WRITE( action, '(A)' ) 'cloud_droplets = .TRUE. '562 WRITE( action, '(A)' ) 'cloud_droplets = .TRUE. (has not been tested)' 565 563 ENDIF 566 564 IF ( .NOT. prandtl_layer ) THEN -
palm/trunk/SOURCE/init_grid.f90
r1037 r1069 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! bugfix: added coupling_char to TOPOGRAPHY_DATA to allow topography in the ocean 23 ! model in case of coupled runs 23 24 ! 24 25 ! Former revisions: … … 587 588 !-- Arbitrary irregular topography data in PALM format (exactly 588 589 !-- matching the grid size and total domain size) 589 OPEN( 90, FILE='TOPOGRAPHY_DATA' , STATUS='OLD', &590 OPEN( 90, FILE='TOPOGRAPHY_DATA'//coupling_char, STATUS='OLD', & 590 591 FORM='FORMATTED', ERR=10 ) 591 592 DO j = ny, 0, -1 … … 595 596 GOTO 12 596 597 597 10 message_string = 'file TOPOGRAPHY _DATAdoes not exist'598 10 message_string = 'file TOPOGRAPHY'//coupling_char//' does not exist' 598 599 CALL message( 'init_grid', 'PA0208', 1, 2, 0, 6, 0 ) 599 600 600 11 message_string = 'errors in file TOPOGRAPHY_DATA' 601 11 message_string = 'errors in file TOPOGRAPHY_DATA'//coupling_char 601 602 CALL message( 'init_grid', 'PA0209', 1, 2, 0, 6, 0 ) 602 603
Note: See TracChangeset
for help on using the changeset viewer.