Changeset 2359
- Timestamp:
- Aug 21, 2017 7:50:30 AM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/Makefile
r2339 r2359 425 425 # The following line is needed for palm_simple_install, don't remove it! 426 426 #to_be_replaced_by_include 427 428 #BOUNDS="-Rbc" # Array bounds checking. Compromises performance seriously. 429 430 F90 = ftn 431 #COPT = -DMPI_REAL=MPI_DOUBLE_PRECISION -DMPI_2REAL=MPI_2DOUBLE_PRECISION -D__lc -D__parallel -D__fftw \ 432 # -D__netcdf -D__netcdf4 -D__netcdf4_parallel -D__nopointer 433 COPT = -DMPI_REAL=MPI_DOUBLE_PRECISION -DMPI_2REAL=MPI_2DOUBLE_PRECISION -D__lc -D__parallel -D__fftw \ 434 -D__netcdf -D__netcdf4 -D__netcdf4_parallel 435 436 #F90FLAGS = -O2 -e Fm -G2 -rm $(BOUNDS) -hnoomp 437 F90FLAGS = -O2 -e F -G2 -rm $(BOUNDS) -hnoomp 438 LDFLAGS = $(F90FLAGS) -dynamic 439 440 # End of include 427 441 428 442 .SUFFIXES: -
palm/trunk/SOURCE/pmc_interface_mod.f90
r2351 r2359 26 26 ! ----------------- 27 27 ! $Id$ 28 ! A minor indexing error in pmci_init_loglaw_correction is corrected. 29 ! 30 ! 2351 2017-08-15 12:03:06Z kanani 28 31 ! Removed check (PA0420) for nopointer version 29 32 ! … … 1509 1512 nk = 1 1510 1513 DO k = 1, nzt_topo_max 1511 nk = MAX( nk, CEILING( cg%dzu(kco(k) ) / dzu(k) ) )1514 nk = MAX( nk, CEILING( cg%dzu(kco(k)+1) / dzu(k) ) ) 1512 1515 ENDDO 1513 1516 nk = nk / 2 ! Note that this must be integer division.
Note: See TracChangeset
for help on using the changeset viewer.