Changes between Initial Version and Version 1 of Ticket #191
- Timestamp:
- 08/08/08 03:36:15 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #191
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #191 – Description
initial v1 1 Correction in swanout1.F to allow table output from SWAN during a coupled run. 2 1) Correct file Waves/SWAN/Src/swanout1.F 3 near lines 302, replace 1 Correction in '''swanout1.F''' to allow table output from SWAN during a coupled run. 2 3 1) Correct file '''Waves/SWAN/Src/swanout1.F''' near lines 302, replace 4 {{{ 4 5 IF (RTYPE(1:2) .EQ. 'SP') THEN 5 6 IVTYPE=500 … … 7 8 IVTYPE=CORQ%IVTYP(1) 8 9 END IF 10 }}} 9 11 with 12 13 {{{ 10 14 IF (RTYPE(1:3) .EQ. 'BLK') THEN 11 15 IVTYPE=CORQ%IVTYP(1) … … 13 17 IVTYPE=500 14 18 END IF 15 16 2) Modify file Waves/SWAN/External/swan_inlet_test.into add the line:19 }}} 20 2) Modify file '''Waves/SWAN/External/swan_inlet_test.in''' to add the line: 17 21 18 22 TABLE 'point1' HEADER 'point1.table' HSIGN DIR WLEN OUTPUT 20000101.000000 1 HR 19 23 20 24 This will allow a test for this output option. 21 22 both of these files are modified in my branch.