!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! !! !! GNU General Public License !! !! !! !! This file is part of the Flexible Modeling System (FMS). !! !! !! !! FMS is free software; you can redistribute it and/or modify !! !! it and are expected to follow the terms of the GNU General Public !! !! License as published by the Free Software Foundation. !! !! !! !! FMS is distributed in the hope that it will be useful, !! !! but WITHOUT ANY WARRANTY; without even the implied warranty of !! !! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the !! !! GNU General Public License for more details. !! !! !! !! You should have received a copy of the GNU General Public License !! !! along with FMS; if not, write to: !! !! Free Software Foundation, Inc. !! !! 59 Temple Place, Suite 330 !! !! Boston, MA 02111-1307 USA !! !! or see: !! !! http://www.gnu.org/licenses/gpl.txt !! !! !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! module fms_mod ! ! Bruce Wyman ! ! ! ! The fms module provides routines that are commonly used ! by most FMS modules. ! ! ! Here is a summary of the functions performed by routines ! in the fms module. ! ! 1. Output module version numbers to a common (log) file ! using a common format.
! 2. Open specific types of files common to many FMS modules. ! These include namelist files, restart files, and 32-bit IEEE ! data files. There also is a matching interface to close the files. ! If other file types are needed the mpp_open and mpp_close ! interfaces in module mpp_io must be used.
! 3. Read and write distributed data to simple native unformatted files. ! This type of file (called a restart file) is used to checkpoint ! model integrations for a subsequent restart of the run.
! 4. For convenience there are several routines published from ! the mpp module. These are routines for getting processor ! numbers, commonly used I/O unit numbers, error handling, and timing sections of code. !
!----------------------------------------------------------------------- ! ! A collection of commonly used routines. ! ! The routines are primarily I/O related, however, there also ! exists several simple miscellaneous utility routines. ! !----------------------------------------------------------------------- ! ! file_exist Checks the existence of the given file name. ! ! check_nml_error Checks the iostat argument that is returned after ! reading a namelist and determines if the error ! code is valid. ! ! write_version_number Prints to the log file (or a specified unit) ! the (cvs) version id string and (cvs) tag name. ! ! error_mesg Print notes, warnings and error messages, ! terminates program for error messages. ! (use error levels NOTE,WARNING,FATAL) ! ! open_namelist_file Opens namelist file for reading only. ! ! open_restart_file Opens a file that will be used for reading or writing ! restart files with native unformatted data. ! ! open_ieee32_file Opens a file that will be used for reading or writing ! unformatted 32-bit ieee data. ! ! close_file Closes a file that was opened using ! open_namelist_file, open_restart_file, or ! open_ieee32_file. ! ! set_domain Call this routine to internally store in fms_mod the ! domain2d data type prior to calling the distributed ! data I/O routines read_data and write_data. ! ! read_data Reads distributed data from a single threaded file. ! ! write_data Writes distributed data to a single threaded file. ! ! fms_init Initializes the fms module and also the ! mpp_io module (which initializes all mpp mods). ! Will be called automatically if the user does ! not call it. ! ! fms_end Calls mpp exit routines. ! ! lowercase Convert character strings to all lower case ! ! uppercase Convert character strings to all upper case ! ! monotonic_array Determines if the real input array has ! monotonically increasing or decreasing values. ! ! string_array_index Match the input character string to a string ! in an array/list of character strings. ! !----------------------------------------------------------------------- !---- published routines from mpp_mod ---- ! ! mpp_error, NOTE, WARNING, FATAL ! mpp_error_state ! mpp_pe, mpp_npes, mpp_root_pe ! stdin, stdout, stderr, stdlog ! mpp_chksum ! ! mpp_clock_id, mpp_clock_begin , mpp_clock_end ! MPP_CLOCK_SYNC, MPP_CLOCK_DETAILED ! CLOCK_COMPONENT, CLOCK_SUBCOMPONENT, CLOCK_MODULE_DRIVER, ! CLOCK_MODULE, CLOCK_ROUTINE, CLOCK_LOOP, CLOCK_INFRA ! !----------------------------------------------------------------------- use mpp_mod, only: mpp_error, NOTE, WARNING, FATAL, & mpp_set_warn_level, & mpp_transmit, ALL_PES, & mpp_pe, mpp_npes, mpp_root_pe, & mpp_sync, mpp_chksum, & mpp_clock_begin, mpp_clock_end, & mpp_clock_id, mpp_init, mpp_exit, & MPP_CLOCK_SYNC, MPP_CLOCK_DETAILED, & CLOCK_COMPONENT, CLOCK_SUBCOMPONENT,& CLOCK_MODULE_DRIVER, CLOCK_MODULE, & CLOCK_ROUTINE, CLOCK_LOOP, & CLOCK_INFRA, mpp_clock_set_grain, & mpp_set_stack_size, & stdin, stdout, stderr, stdlog, & mpp_error_state, lowercase, & uppercase use mpp_domains_mod, only: domain2D, mpp_define_domains, & mpp_update_domains, GLOBAL_DATA_DOMAIN, & mpp_domains_init, mpp_domains_exit, & mpp_global_field, mpp_domains_set_stack_size, & mpp_get_compute_domain, mpp_get_global_domain, & mpp_get_data_domain use mpp_io_mod, only: mpp_io_init, mpp_open, mpp_close, & MPP_ASCII, MPP_NATIVE, MPP_IEEE32, MPP_NETCDF, & MPP_RDONLY, MPP_WRONLY, MPP_APPEND, MPP_OVERWR, & MPP_SEQUENTIAL, MPP_DIRECT, & MPP_SINGLE, MPP_MULTI, MPP_DELETE, mpp_io_exit, & fieldtype, mpp_get_atts, mpp_get_info, mpp_get_fields use fms_io_mod, only : read_data, write_data, fms_io_init, fms_io_exit, field_size, & open_namelist_file, open_restart_file, open_ieee32_file, close_file, & set_domain, get_domain_decomp, nullify_domain, & open_file, open_direct_file, string, get_mosaic_tile_grid, & get_mosaic_tile_file, get_global_att_value, file_exist, field_exist use memutils_mod, only: print_memuse_stats, memutils_init use constants_mod, only: constants_version=>version, constants_tagname=>tagname !pjp: PI not computed implicit none private ! routines for initialization and termination of module public :: fms_init, fms_end ! routines for opening/closing specific types of file public :: open_namelist_file, open_restart_file, & open_ieee32_file, close_file, & open_file, open_direct_file ! routines for reading/writing distributed data public :: set_domain, read_data, write_data public :: get_domain_decomp, field_size, nullify_domain public :: get_global_att_value ! routines for get mosaic information public :: get_mosaic_tile_grid, get_mosaic_tile_file ! miscellaneous i/o routines public :: file_exist, check_nml_error, field_exist, & write_version_number, error_mesg, fms_error_handler ! miscellaneous utilities (non i/o) public :: lowercase, uppercase, string, & string_array_index, monotonic_array ! public mpp interfaces public :: mpp_error, NOTE, WARNING, FATAL, & mpp_error_state, & mpp_pe, mpp_npes, mpp_root_pe, & stdin, stdout, stderr, stdlog, & mpp_chksum public :: mpp_clock_id, mpp_clock_begin, mpp_clock_end public :: MPP_CLOCK_SYNC, MPP_CLOCK_DETAILED public :: CLOCK_COMPONENT, CLOCK_SUBCOMPONENT, & CLOCK_MODULE_DRIVER, CLOCK_MODULE, & CLOCK_ROUTINE, CLOCK_LOOP, CLOCK_INFRA !Balaji !this is published by fms and applied to any initialized clocks !of course you can go and set the flag to SYNC or DETAILED by hand integer, public :: clock_flag_default !------ namelist interface ------- !------ adjustable severity level for warnings ------ logical :: read_all_pe = .true. character(len=16) :: clock_grain = 'NONE', clock_flags='NONE' character(len=8) :: warning_level = 'warning' character(len=64) :: iospec_ieee32 = '-N ieee_32' integer :: stack_size = 0 integer :: domains_stack_size = 0 logical, public :: print_memory_usage = .FALSE. !------ namelist interface ------- ! ! ! The level of clock granularity used for performance timing sections ! of code. Possible values in order of increasing detail are: ! 'NONE', 'COMPONENT', 'SUBCOMPONENT', 'MODULE_DRIVER', 'MODULE', 'ROUTINE', ! 'LOOP', and 'INFRA'. Code sections are defined using routines in MPP ! module: mpp_clock_id, mpp_clock_begin, and mpp_clock_end. ! The fms module makes these routines public. ! A list of timed code sections will be printed to STDOUT. ! See the MPP ! module for more details. ! ! ! Possible values are 'NONE', 'SYNC', or 'DETAILED'. ! SYNC will give accurate information on load balance of the clocked ! portion of code. ! DETAILED also turns on detailed message-passing performance diagnosis. ! Both SYNC and DETAILED will work correctly on innermost clock nest ! and distort outer clocks, and possibly the overall code time. ! See the MPP ! module for more details. ! ! ! Read global data on all processors extracting local part needed (TRUE) or ! read global data on PE0 and broadcast to all PEs (FALSE). ! ! ! Sets the termination condition for the WARNING flag to interfaces ! error_mesg/mpp_error. set warning_level = 'fatal' (program crashes for ! warning messages) or 'warning' (prints warning message and continues). ! ! ! iospec flag used with the open_ieee32_file interface. ! ! ! The size in words of the MPP user stack. If stack_size > 0, the following ! MPP routine is called: call mpp_set_stack_size (stack_size). If stack_size ! = 0 (default) then the default size set by mpp_mod is used. ! ! ! The size in words of the MPP_DOMAINS user stack. If ! domains_stack_size > 0, the following MPP_DOMAINS routine is called: ! call mpp_domains_set_stack_size (domains_stack_size). If ! domains_stack_size = 0 (default) then the default size set by ! mpp_domains_mod is used. ! ! ! If set to .TRUE., memory usage statistics will be printed at various ! points in the code. It is used to study memory usage, e.g to detect ! memory leaks. ! ! namelist /fms_nml/ read_all_pe, clock_grain, clock_flags, & warning_level, iospec_ieee32, & stack_size, domains_stack_size, & print_memory_usage ! ---- private data for check_nml_error ---- integer, private :: num_nml_error_codes, nml_error_codes(20) logical, private :: do_nml_error_init = .true. private nml_error_init ! ---- version number ----- character(len=128) :: version = '$Id: fms.F90,v 17.0 2009/07/21 03:19:19 fms Exp $' character(len=128) :: tagname = '$Name: mom4p1_pubrel_dec2009_nnz $' logical :: module_is_initialized = .FALSE. contains !####################################################################### ! ! ! Initializes the FMS module and also calls the initialization routines for all ! modules in the MPP package. Will be called automatically if the user does ! not call it. ! ! ! Initialization routine for the fms module. It also calls initialization routines ! for the mpp, mpp_domains, and mpp_io modules. Although this routine ! will be called automatically by other fms_mod routines, users should ! explicitly call fms_init. If this routine is called more than once it will ! return silently. There are no arguments. ! ! ! ! The namelist variable warning_level must be either 'fatal' or 'warning' ! (case-insensitive). ! ! ! The namelist variable clock_grain must be one of the following values: ! 'NONE', 'COMPONENT', 'SUBCOMPONENT', 'MODULE_DRIVER', 'MODULE', 'ROUTINE', ! 'LOOP', or 'INFRA' (case-insensitive). ! ! initializes the fms module/package ! also calls mpp initialization routines and reads fms namelist subroutine fms_init (localcomm ) integer, intent(in), optional :: localcomm integer :: unit, ierr, io if (module_is_initialized) return ! return silently if already called module_is_initialized = .true. !---- initialize mpp routines ---- if(present(localcomm)) then call mpp_init(localcomm=localcomm) else call mpp_init() endif call mpp_domains_init call fms_io_init !---- read namelist input ---- call nml_error_init ! first initialize namelist iostat error codes if (file_exist('input.nml')) then unit = open_namelist_file ( ) ierr=1; do while (ierr /= 0) read (unit, nml=fms_nml, iostat=io, end=10) ierr = check_nml_error(io,'fms_nml') ! also initializes nml error codes enddo 10 call mpp_close (unit) endif !---- define mpp stack sizes if non-zero ----- if ( stack_size > 0) call mpp_set_stack_size ( stack_size) if (domains_stack_size > 0) call mpp_domains_set_stack_size (domains_stack_size) !---- set severity level for warnings ---- select case( trim(lowercase(warning_level)) ) case( 'fatal' ) call mpp_set_warn_level ( FATAL ) case( 'warning' ) call mpp_set_warn_level ( WARNING ) case default call error_mesg ( 'fms_init', & 'invalid entry for namelist variable warning_level', FATAL ) end select !--- set granularity for timing code sections --- select case( trim(uppercase(clock_grain)) ) case( 'NONE' ) call mpp_clock_set_grain (0) case( 'COMPONENT' ) call mpp_clock_set_grain (CLOCK_COMPONENT) case( 'SUBCOMPONENT' ) call mpp_clock_set_grain (CLOCK_SUBCOMPONENT) case( 'MODULE_DRIVER' ) call mpp_clock_set_grain (CLOCK_MODULE_DRIVER) case( 'MODULE' ) call mpp_clock_set_grain (CLOCK_MODULE) case( 'ROUTINE' ) call mpp_clock_set_grain (CLOCK_ROUTINE) case( 'LOOP' ) call mpp_clock_set_grain (CLOCK_LOOP) case( 'INFRA' ) call mpp_clock_set_grain (CLOCK_INFRA) case default call error_mesg ( 'fms_init', & 'invalid entry for namelist variable clock_grain', FATAL ) end select !Balaji select case( trim(uppercase(clock_flags)) ) case( 'NONE' ) clock_flag_default = 0 case( 'SYNC' ) clock_flag_default = MPP_CLOCK_SYNC case( 'DETAILED' ) clock_flag_default = MPP_CLOCK_DETAILED case default call error_mesg ( 'fms_init', & 'invalid entry for namelist variable clock_flags', FATAL ) end select !--- write version info and namelist to logfile --- call write_version_number (version, tagname) if (mpp_pe() == mpp_root_pe()) then unit = stdlog() write (unit, nml=fms_nml) write (unit,*) 'nml_error_codes=', nml_error_codes(1:num_nml_error_codes) endif call memutils_init( print_memory_usage ) call print_memuse_stats('fms_init') call write_version_number (constants_version,constants_tagname) end subroutine fms_init ! !####################################################################### ! ! ! Calls the termination routines for all modules in the MPP package. ! ! ! Termination routine for the fms module. It also calls destructor routines ! for the mpp, mpp_domains, and mpp_io modules. If this routine is called ! more than once it will return silently. There are no arguments. ! ! ! terminates the fms module/package ! also calls mpp destructor routines subroutine fms_end ( ) if (.not.module_is_initialized) return ! return silently ! call fms_io_exit ! now called from coupler_end call mpp_io_exit call mpp_domains_exit call mpp_exit module_is_initialized =.FALSE. end subroutine fms_end ! !####################################################################### ! ! ! Print notes, warnings and error messages; terminates program for warning ! and error messages. (use error levels NOTE,WARNING,FATAL, see example below) ! ! ! Print notes, warnings and error messages; and terminates the program for ! error messages. This routine is a wrapper around mpp_error, and is provided ! for backward compatibility. This module also publishes mpp_error, ! users should try to use the mpp_error interface. ! ! ! ! Routine name where the warning or error has occurred. ! ! ! Warning or error message to be printed. ! ! ! Level of severity; set to NOTE, WARNING, or FATAL Termination always occurs ! for FATAL, never for NOTE, and is settable for WARNING (see namelist). ! ! ! ! Examples: !
!        use fms_mod, only: error_mesg, FATAL, NOTE

!        call error_mesg ('fms_mod', 'initialization not called', FATAL)
!        call error_mesg ('fms_mod', 'fms_mod message', NOTE)
!     
!
! wrapper for the mpp error handler ! users should try to use the mpp_error interface subroutine error_mesg (routine, message, level) character(len=*), intent(in) :: routine, message integer, intent(in) :: level ! input: ! routine name of the calling routine (character string) ! message message written to output (character string) ! level set to NOTE, MESSAGE, or FATAL (integer) if (.not.module_is_initialized) call fms_init ( ) call mpp_error ( routine, message, level ) end subroutine error_mesg !
!####################################################################### ! ! ! Facilitates the control of fatal error conditions ! ! ! When err_msg is present, message is copied into err_msg ! and the function returns a value of .true. ! Otherwise calls mpp_error to terminate execution. ! The intended use is as shown below. ! ! ! ! Routine name where the fatal error has occurred. ! ! ! fatal error message to be printed. ! ! ! .true. when err_msg is present ! .false. when err_msg is not present ! ! ! When err_msg is present: err_msg = message ! function fms_error_handler(routine, message, err_msg) logical :: fms_error_handler character(len=*), intent(in) :: routine, message character(len=*), intent(out), optional :: err_msg fms_error_handler = .false. if(present(err_msg)) then err_msg = message fms_error_handler = .true. else call mpp_error(trim(routine),trim(message),FATAL) endif end function fms_error_handler ! !####################################################################### ! ! ! Checks the iostat argument that is returned after reading a namelist ! and determines if the error code is valid. ! ! ! The FMS allows multiple namelist records to reside in the same file. ! Use this interface to check the iostat argument that is returned after ! reading a record from the namelist file. If an invalid iostat value ! is detected this routine will produce a fatal error. See the NOTE below. ! ! ! ! The iostat value returned when reading a namelist record. ! ! ! The name of the namelist. This name will be printed if an error is ! encountered, otherwise the name is not used. ! ! ! This function returns the input iostat value (integer) if it is an ! allowable error code. If the iostat error code is not ! allowable, an error message is printed and the program terminated. ! ! ! Some compilers will return non-zero iostat values when reading through ! files with multiple namelist. This routine ! will try skip these errors and only terminate for true namelist errors. ! ! Examples ! ! The following example checks if a file exists, reads a namelist input ! from that file, and checks for errors in that ! namelist. When the correct namelist is read and it has no errors the ! routine check_nml_error will return zero and the while loop will exit. ! This code segment should be used to read namelist files. !
!          integer :: unit, ierr, io
!
!          if ( file_exist('input.nml') ) then
!              unit = open_namelist_file ( )
!              ierr=1
!              do while (ierr /= 0)
!                read  (unit, nml=moist_processes_nml, iostat=io, end=10)
!                ierr = check_nml_error(io,'moist_processes_nml')
!              enddo
!        10    call close_file (unit)
!          endif
!       
!
! ! There was an error message reading the namelist specified. Carefully ! examine all namelist variables for ! misspellings of type mismatches (e.g., integer vs. real). ! ! used to check the iostat argument that is ! returned after reading a namelist ! see the online documentation for how this routine might be used function check_nml_error (iostat, nml_name) result (error_code) integer, intent(in) :: iostat character(len=*), intent(in) :: nml_name integer error_code, i character(len=128) :: err_str if (.not.module_is_initialized) call fms_init ( ) error_code = iostat do i = 1, num_nml_error_codes if (error_code == nml_error_codes(i)) return enddo ! ------ fatal namelist error ------- ! ------ only on root pe ---------------- if (mpp_pe() == mpp_root_pe()) then write (err_str,*) 'while reading namelist ', & trim(nml_name), ', iostat = ',error_code call error_mesg ('check_nml_error in fms_mod', err_str, FATAL) call error_mesg ('check_nml_error in fms_mod', err_str, FATAL) call mpp_sync() ! In principal, this sync should not be necessary ! as mpp_error's call to MPI_ABORT and ABORT should ! kill all associated processes. Still... else call mpp_sync() endif end function check_nml_error !
!----------------------------------------------------------------------- ! private routine for initializing allowable error codes subroutine nml_error_init ! some compilers return non-zero iostat values while ! reading through files with multiple namelist records ! this routines "attempts" to identify the iostat values associated ! with records not belonging to the requested namelist integer unit, io, ir real :: a=1. integer :: b=1 logical :: c=.true. character(len=8) :: d='testing' namelist /b_nml/ a,b,c,d nml_error_codes(1) = 0 ! ---- create dummy namelist file that resembles actual ---- ! ---- (each pe has own copy) ---- call mpp_open (unit, '_read_error.nml', form=MPP_ASCII, & action=MPP_OVERWR, access=MPP_SEQUENTIAL, & threading=MPP_MULTI) ! ---- due to namelist bug this will not always work --- write (unit, 10) 10 format (' ', & /' &a_nml a=1. /', & /'#------------------', & /' &b_nml a=5., b=0, c=.false., d=''test'', &end') call mpp_close (unit) ! ---- read namelist files and save error codes ---- call mpp_open (unit, '_read_error.nml', form=MPP_ASCII, & action=MPP_RDONLY, access=MPP_SEQUENTIAL, & threading=MPP_MULTI) ir=1; io=1; do read (unit, nml=b_nml, iostat=io, end=20) if (io == 0) exit ir=ir+1; nml_error_codes(ir)=io enddo 20 call mpp_close (unit, action=MPP_DELETE) num_nml_error_codes = ir !del if (mpp_pe() == mpp_root_pe()) & !del print *, 'PE,nml_error_codes=',mpp_pe(), nml_error_codes(1:ir) do_nml_error_init = .false. end subroutine nml_error_init !####################################################################### ! ! ! Prints to the log file (or a specified unit) the (cvs) version id string and ! (cvs) tag name. ! ! ! Prints to the log file (stdlog) or a specified unit the (cvs) version id string ! and (cvs) tag name. ! ! ! ! string that contains routine name and version number. ! ! ! The tag/name string, this is usually the Name string ! returned by CVS when checking out the code. ! ! ! The Fortran unit number of an open formatted file. If this unit number ! is not supplied the log file unit number is used (stdlog). ! ! prints module version number to the log file of specified unit number subroutine write_version_number (version, tag, unit) ! in: version = string that contains routine name and version number ! ! optional in: ! tag = cvs tag name that code was checked out with ! unit = alternate unit number to direct output ! (default: unit=stdlog) character(len=*), intent(in) :: version character(len=*), intent(in), optional :: tag integer, intent(in), optional :: unit integer :: logunit if (.not.module_is_initialized) call fms_init ( ) logunit = stdlog() if (present(unit)) then logunit = unit else ! only allow stdlog messages on root pe if ( mpp_pe() /= mpp_root_pe() ) return endif if (present(tag)) then write (logunit,'(/,80("="),/(a))') trim(version), trim(tag) else write (logunit,'(/,80("="),/(a))') trim(version) endif end subroutine write_version_number ! !####################################################################### ! ! ! match the input character string to a string ! in an array/list of character strings ! ! ! Tries to find a match for a character string in a list of character strings. ! The match is case sensitive and disregards blank characters to the right of ! the string. ! ! ! ! Character string of arbitrary length. ! ! ! Array/list of character strings. ! ! ! The index of string_array where the first match was found. If ! no match was found then index = 0. ! ! ! If an exact match was found then TRUE is returned, otherwise FALSE is returned. ! ! ! Examples !
!       string = "def"
!       string_array = (/ "abcd", "def ", "fghi" /)

!       string_array_index ( string, string_array, index )

!       Returns: TRUE, index = 2
!      
!
! match the input character string to a string ! in an array/list of character strings function string_array_index ( string, string_array, index ) result (found) character(len=*), intent(in) :: string, string_array(:) integer, optional, intent(out) :: index logical :: found integer :: i ! initialize this function to false ! loop thru string_array and exit when a match is found found = .false. if (present(index)) index = 0 do i = 1, size(string_array(:)) ! found a string match ? if ( trim(string) == trim(string_array(i)) ) then found = .true. if (present(index)) index = i exit endif enddo end function string_array_index !
!####################################################################### ! ! ! Determines if a real input array has monotonically increasing or ! decreasing values. ! ! ! Determines if the real input array has monotonically increasing or ! decreasing values. ! ! ! ! An array of real values. If the size(array) < 2 this function ! assumes the array is not monotonic, no fatal error will occur. ! ! ! If the input array is: ! >> monotonic (small to large) then direction = +1. ! >> monotonic (large to small) then direction = -1. ! >> not monotonic then direction = 0. ! ! ! If the input array of real values either increases or decreases monotonically ! then TRUE is returned, otherwise FALSE is returned. ! ! determines if the real input array has ! monotonically increasing or decreasing values function monotonic_array ( array, direction ) real, intent(in) :: array(:) integer, intent(out), optional :: direction logical :: monotonic_array integer :: i ! initialize monotonic_array = .false. if (present(direction)) direction = 0 ! array too short if ( size(array(:)) < 2 ) return ! ascending if ( array(1) < array(size(array(:))) ) then do i = 2, size(array(:)) if (array(i-1) < array(i)) cycle return enddo monotonic_array = .true. if (present(direction)) direction = +1 ! descending else do i = 2, size(array(:)) if (array(i-1) > array(i)) cycle return enddo monotonic_array = .true. if (present(direction)) direction = -1 endif end function monotonic_array ! end module fms_mod ! ! ! Namelist error checking may not work correctly with some compilers. ! ! Users should beware when mixing Fortran reads and read_data calls. If a ! Fortran read follows read_data and namelist variable read_all_pe = FALSE ! (not the default), then the code will fail. It is safest if Fortran reads ! precede calls to read_data. ! ! ! An unexpected end-of-file was encountered in a read_data call. ! You may want to use the optional end argument to detect the EOF. ! ! ! 1) If the MPP or MPP_DOMAINS stack size is exceeded the ! program will terminate after printing the required size. ! ! 2) When running on a very small number of processors or for high ! resolution models the default domains_stack_size will ! probably be insufficient. ! ! 3) The following performance routines in the MPP module are published by this module. !
!        mpp_clock_id, mpp_clock_begin, mpp_clock_end
!
! and associated parameters that are published: !
!        MPP_CLOCK_SYNC, MPP_CLOCK_DETAILED, CLOCK_COMPONENT, CLOCK_SUBCOMPONENT,
!        CLOCK_MODULE_DRIVER, CLOCK_MODULE, CLOCK_ROUTINE, CLOCK_LOOP, CLOCK_INFRA
!
! ! 4) Here is an example of how to time a section of code.
!
!          use fms_mod, only: mpp_clock_id, mpp_clock_begin, &
!                             mpp_clock_end. MPP_CLOCK_SYNC, &
!                             CLOCK_MODULE_DRIVER
!          integer :: id_mycode
!
!          id_mycode = mpp_clock_id ('mycode loop', flags=MPP_CLOCK_SYNC, grain=CLOCK_MODULE_DRIVER)
!          call mpp_clock_begin (id_mycode)
!                        :
!                        :
!           ~~ this code will be timed ~~ 
!                        :
!                        :
!          call mpp_clock_end (id_mycode)
! 
! Note: CLOCK_MODULE_DRIVER can be replaced with ! CLOCK_COMPONENT, CLOCK_SUBCOMPONENT, CLOCK_MODULE_DRIVER, CLOCK_MODULE, CLOCK_ROUTINE, ! CLOCK_LOOP, or CLOCK_INFRA. ! !
! ! NetCDF facilities for reading and writing restart files and (IEEE32) ! data files. ! ! ! May possible split the FMS module into two modules. ! ! i.general utilities (FMS_MOD)
! ii.I/O utilities (FMS_IO_MOD) !
!