Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (97 - 99 of 964)

Ticket Owner Reporter Resolution Summary
#300 arango m.hadfield Fixed Correction to NAT check
Description

In ROMS/Utility/inp_par.F, lines 1031-1036, the value of NAT is checked:

            IF ((NAT.lt.0).or.(NAT.gt.2)) THEN
              IF (Master) WRITE (out,290) 'NAT = ', NAT,                &
     &                          'make sure that NAT is either 1 or 2.'
              exit_flag=5
              RETURN
            END IF

The logical expression does not match the message. This code is failing to catch cases where I set NAT=0 for a 3D run (because I am adapting input files from a 2D run); the model then fails with an out-of-bounds error or segmentation fault in mod_ncparam.

The check should be

            IF ((NAT.lt.1).or.(NAT.gt.2)) THEN
            ...
#311 arango arango Done Added plotting of time-varying bathymetry
Description

I added a new field to varid.dat to allow plotting time-varying bathymetry in sediment morphology applications.

392,'IDBATH',1,T,'bath','-',                   'Time-Varying bathymetry (m)'

This field can now be plotted by using FLDID=392.

 [392]  IDBATH    Time-Varying bathymetry (m)

Many thanks to Nico Jarry for bring this to our attention.

#312 arango arango Done makefile rules for NEC SXF90 compiler
Description

Added makefile rules Linux-necsx.mk for the NEC SXF90 cross compiler on Linux. Many thanks to Christian Rodehacke for contributing this make configuration file.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.