Custom Query (972 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 972)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Owner Reporter Resolution Summary
#161 arango kate Done Sea_Ice placement in makefile
Description

The makefile now only parses the directories containing files being used - except Sea_Ice is on the always parse list. It should be handled the same way as the adjoint or the waves.

#169 arango arango Done Improved compilation information
Description

I added an extra line to the makefile rules files (Compilers/*.mk) to report the full path of the compiler being used or the mpif90 script:

#
# Use full path of compiler.
#
               FC := $(shell which ${FC})

This useful when there are several versions of the compiler or the mpif90 script. I also refined the USE_MPIF90 conditional in the build script.

#192 arango ianthomas Fixed Incorrect error explanations when reading NetCDF
Description

Firstly, in ROMS/Utility/get_grid.F, lines 171-175 are

      IF (.not.find_string(var_name,n_var,'mask_psi',vindex)) THEN
        IF (Master) WRITE (stdout,10) 'mask_rho', TRIM(ncname)
        exit_flag=2
        RETURN
      END IF

The second line should be

       IF (Master) WRITE (stdout,10) 'mask_psi', TRIM(ncname)

Secondly, in ROMS/Utility/checkvars.F, lines 343-348 are

      IF (.not.have_var(idtime)) THEN
        IF (Master) WRITE (stdout,10) string, TRIM(tvarnam),            &
     &                                TRIM(ncname)
        exit_flag=2
        RETURN
      END IF

I think the second line should instead be

        IF (Master) WRITE (stdout,10) string, TRIM(Vname(1,idtime)),     &
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.