Changeset 631 for palm/trunk/SOURCE
- Timestamp:
- Dec 13, 2010 3:06:48 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_3d_model.f90
r623 r631 7 7 ! Current revisions: 8 8 ! ----------------- 9 ! 9 ! Bugfix: type conversion of '1' to 64bit for the MAX function (ngp_3d_inner) 10 10 ! 11 11 ! Former revisions: … … 1594 1594 !-- buoyancy, etc. A zero value will occur for cases where all grid points of 1595 1595 !-- the respective subdomain lie below the surface topography 1596 ngp_2dh_outer = MAX( 1, ngp_2dh_outer(:,:) ) 1597 ngp_3d_inner = MAX( 1, ngp_3d_inner(:) ) 1598 ngp_2dh_s_inner = MAX( 1, ngp_2dh_s_inner(:,:) ) 1596 ngp_2dh_outer = MAX( 1, ngp_2dh_outer(:,:) ) 1597 ngp_3d_inner = MAX( INT(1, KIND = SELECTED_INT_KIND( 18 )), & 1598 ngp_3d_inner(:) ) 1599 ngp_2dh_s_inner = MAX( 1, ngp_2dh_s_inner(:,:) ) 1599 1600 1600 1601 DEALLOCATE( ngp_2dh_l, ngp_2dh_outer_l, ngp_3d_inner_l, ngp_3d_inner_tmp )
Note: See TracChangeset
for help on using the changeset viewer.