Changes between Initial Version and Version 1 of Ticket #300
- Timestamp:
- 03/24/09 22:55:04 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #300
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #300 – Description
initial v1 1 In ROMS/Utility/inp_par.F, lines 1031-1036, the value of NATis checked:1 In '''ROMS/Utility/inp_par.F''', lines 1031-1036, the value of '''NAT''' is checked: 2 2 {{{ 3 3 IF ((NAT.lt.0).or.(NAT.gt.2)) THEN … … 9 9 }}} 10 10 11 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.11 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'''. 12 12 13 13 The check should be