Custom Query (986 matches)
Results (13 - 15 of 986)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#161 | 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 | 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 | 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)), & |