Changeset 225 for palm/trunk
- Timestamp:
- Jan 26, 2009 2:44:20 PM (16 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r222 r225 25 25 User interface has been split into single files. 26 26 27 Type of count and count_rate changed to INTEGER(8) in order to avoid out of 28 range problems, which result in measured negative time intervals. (cpu_log, 29 local_tremain, local_tremain_ini) 30 27 31 Reading mechanism from restart files completely revised. The subdomain/total 28 32 domain size can vary arbitrarily between current and previous run. … … 49 53 (init_grid, modules, user_header, user_init_grid, user_parin) 50 54 51 Makefile, mbuild, mrun, advec_s_bc, check_parameters, local_stop, modules, netcdf, read_var_list, read_3d_binary, user_read_restart_data55 Makefile, mbuild, mrun, advec_s_bc, check_parameters, cpu_log, local_stop, local_tremain, local_tremain_ini, modules, netcdf, read_var_list, read_3d_binary, user_read_restart_data 52 56 53 57 New: handle_palm_message, user_3d_data_averaging user_actions user_advec_particles user_check_data_output user_check_data_output_pr user_data_output_2d user_data_output_3d user_data_output_dvrp user_define_netcdf_grid user_dvrp_coltab user_header user_init user_init_3d_model user_init_grid user_init_particles user_init_plant_canopy user_last_actions user_module user_parin user_particle_attributes user_read_restart_data user_spectra user_statistics … … 58 62 Errors: 59 63 ------ 64 65 Bugfix: array d is reallocated in case that multigrid is used (calc_spectra) 60 66 61 67 Bugfixes for nonparallel execution (check_for_restart, cpu_statistics, inflow_turbulence, init_coupling, timestep) … … 82 88 Bugfix: abort in case that absolute temperature is below zero (init_cloud_physics) 83 89 84 advec_particles, c heck_for_restart, combine_plot_fields, cpu_statistics, data_output_2d, header, inflow_turbulence, init_cloud_physics, init_coupling, production_e, read_3d_binary, timestep90 advec_particles, calc_spectra, check_for_restart, combine_plot_fields, cpu_statistics, data_output_2d, header, inflow_turbulence, init_cloud_physics, init_coupling, production_e, read_3d_binary, timestep -
palm/trunk/SOURCE/calc_spectra.f90
r198 r225 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Bugfix: array d is reallocated in case that multigrid is used 7 7 ! 8 8 ! Former revisions: … … 55 55 !-- Initialize ffts 56 56 CALL fft_init 57 58 ! 59 !-- Reallocate array d in required size 60 IF ( psolver == 'multigrid' ) THEN 61 DEALLOCATE( d ) 62 ALLOCATE( d(nzb+1:nzta,nys:nyna,nxl:nxra) ) 63 ENDIF 57 64 58 65 ! -
palm/trunk/SOURCE/cpu_log.f90
r83 r225 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Type of count and count_rate changed to INTEGER(8) 7 7 ! 8 8 ! Former revisions: … … 40 40 41 41 #if defined( __lc ) || defined( __decalpha ) || defined( __nec ) 42 INTEGER 42 INTEGER(8) :: count, count_rate 43 43 #elif defined( __ibm ) 44 44 INTEGER(8) :: IRTC -
palm/trunk/SOURCE/local_tremain.f90
r83 r225 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Type of count and count_rate changed to INTEGER(8) in order to avoid out of 7 ! range problems (which result in measured negative time intervals) 7 8 ! 8 9 ! Former revisions: … … 39 40 REAL :: actual_wallclock_time 40 41 #elif defined( __lc ) 41 INTEGER 42 INTEGER(8) :: count, count_rate 42 43 REAL :: actual_wallclock_time 43 44 #endif -
palm/trunk/SOURCE/local_tremain_ini.f90
r83 r225 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Type of count and count_rate changed to INTEGER(8) in order to avoid out of 7 ! range problems (which result in measured negative time intervals) 7 8 ! 8 9 ! Former revisions: … … 40 41 CHARACTER (LEN=10) :: value_chr 41 42 INTEGER :: idum 42 INTEGER 43 INTEGER(8) :: count, count_rate 43 44 #endif 44 45
Note: See TracChangeset
for help on using the changeset viewer.