Changeset 305 for palm/trunk
- Timestamp:
- Apr 27, 2009 11:58:42 AM (16 years ago)
- Location:
- palm/trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/DOC/app/chapter_4.1.html
r256 r305 5666 5666 5667 5667 5668 <td style="vertical-align: top;"><span style="font-style: italic;">' match'</span></td>5668 <td style="vertical-align: top;"><span style="font-style: italic;">'strict'</span></td> 5669 5669 5670 5670 -
palm/trunk/DOC/app/chapter_4.6.html
r266 r305 6352 6352 6353 6353 6354 <p><i>' match'</i></p>6354 <p><i>'strict'</i></p> 6355 6355 6356 6356 -
palm/trunk/SCRIPTS/mbuild
r266 r305 105 105 # 21/03/09 - Siggi - -u copies also copies process_dvr_output and 106 106 # .dvrserver.config 107 # 21/04/09 - Siggi - adjustments for new IBM at DKRZ, which is now ibmh 107 108 108 109 … … 474 475 (lcxt4) remote_addres=129.177.20.113;; 475 476 (decalpha) remote_addres=165.132.26.56;; 476 (ibmb) remote_addres=130.73.230.10;; 477 (ibmh) remote_addres=130.75.4.10;; 477 (ibmh) remote_addres=136.172.40.15;; 478 478 (ibms) remote_addres=150.183.5.101;; 479 479 (ibmy) remote_addres=165.132.26.58;; … … 1084 1084 ssh ${remote_username}@${remote_addres} "cd ${remote_md}; echo '$make_call_string' > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" 2>&1 | tee ${remote_host}_last_make_protokoll 1085 1085 1086 elif [[ $remote_host = ibm b || $remote_host = ibmh ]]1086 elif [[ $remote_host = ibmh ]] 1087 1087 then 1088 1088 … … 1228 1228 ssh ${remote_username}@${remote_addres} "cd ${remote_ud}; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" 1229 1229 1230 elif [[ $remote_host = ibm b || $remote_host = ibmh ]]1230 elif [[ $remote_host = ibmh ]] 1231 1231 then 1232 1232 -
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r292 r305 70 70 user_init_grid, user_parin, write_var_list) 71 71 72 Default value of grid_matching changed to strict. 73 72 74 advec_particles, advec_s_bc, buoyancy, calc_spectra, check_for_restart, check_open, check_parameters, close_file, coriolis, cpu_log, data_output_2d, data_output_3d, data_output_dvrp, data_output_profiles, data_output_ptseries, data_output_spectra, data_output_tseries, eqn_state_seawater, fft_xy, flow_statistics, header, init_1d_model, init_3d_model, init_dvrp, init_grid, init_particles, init_pegrid, netcdf, output_particles_netcdf, package_parin, parin, plant_canopy_model, poisfft_hybrid, poismg, read_3d_binary, read_var_list, sort_particles, user_check_parameters, user_header, user_init_grid, user_parin, surface_coupler, temperton_fft, timestep, user_actions, user_data_output_dvrp, user_dvrp_coltab, user_init_grid, user_init_plant_canopy, user_parin, user_read_restart_data, user_spectra, write_var_list 73 75 -
palm/trunk/SOURCE/Makefile
r278 r305 116 116 production_e.o prognostic_equations.o random_function.o random_gauss.o \ 117 117 read_3d_binary.o read_var_list.o run_control.o \ 118 set_particle_attributes.o set_slicer_attributes_dvrp. f90\118 set_particle_attributes.o set_slicer_attributes_dvrp.o \ 119 119 singleton.o sor.o spline_x.o spline_y.o \ 120 120 spline_z.o sum_up_3d_data.o surface_coupler.o swap_timelevel.o \ -
palm/trunk/SOURCE/flow_statistics.f90
r291 r305 121 121 sums_l(nzb+10,pr_palm,0) = sums_divnew_l(sr) ! new divergence from pres 122 122 123 ! 123 ! 124 124 !-- Horizontally averaged profiles of horizontal velocities and temperature. 125 125 !-- They must have been computed before, because they are already required -
palm/trunk/SOURCE/modules.f90
r291 r305 13 13 ! canyon_wall_south, conserve_volume_flow_mode, coupling_start_time, 14 14 ! dp_external, dp_level_b, dp_level_ind_b, dp_smooth, dp_smooth_factor, dpdxy, 15 ! run_coupled, time_since_reference_point, u_bulk, v_bulk in control_parameters 15 ! run_coupled, time_since_reference_point, u_bulk, v_bulk in control_parameters, 16 ! default value of grid_matching changed to strict 16 17 ! 17 18 ! Former revisions: … … 272 273 CHARACTER (LEN=2) :: coupling_char = '' 273 274 CHARACTER (LEN=5) :: write_binary = 'false' 274 CHARACTER (LEN=6) :: grid_matching = ' match'275 CHARACTER (LEN=6) :: grid_matching = 'strict' 275 276 CHARACTER (LEN=8) :: run_date, run_time 276 277 CHARACTER (LEN=9) :: simulated_time_chr -
palm/trunk/SOURCE/set_slicer_attributes_dvrp.f90
r285 r305 16 16 ! This routine sets the dvrp-slicer attributes 17 17 !------------------------------------------------------------------------------! 18 18 19 #if defined( __dvrp_graphics ) 19 20 … … 52 53 53 54 #endif 55 54 56 END SUBROUTINE set_slicer_attributes_dvrp
Note: See TracChangeset
for help on using the changeset viewer.