Custom Query (986 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (109 - 111 of 986)

Ticket Owner Reporter Resolution Summary
#150 arango arango Done Corrected allocation of coupling structures Export and Import
Description

A problem was reported about the allocation of the sctructure containing the keyword of Export and Import fields used during multi-model coupling. The allocation logic works in some compilers and not in others. I changed the logic so it is more robust. I also corrected an entry in the metadata file coupling.dat.

Many thanks to Haibo Zong for reporting this problem.

#154 arango jcwarner Fixed spec2d SWAN ifort
Description

Users reporting having trouble with the coupled ROMS-SWAN code when trying to allow swan to write out a 2D spectra output file. I have been able to duplicate this issue, but it only occurs with the ifort compiler (i am using 9.0.028) and not with pgi (6.1-6). Problem: in swanout1.F, the problem is at line (446 or so)

IVTYPE=CORQ%IVTYP(1)

When the user has a SPEC outfile, the pointer to IVTYP(1) is not defined. Apparently, pgi is ok with this but ifort fails. The var IVTYPE is not needed by the coupler for a SPEC output.

Suggested fix 1) modify swanout1.F, after the call to SWORD, add code to always define IVTYP:

IF (RTYPE(1:2) .EQ. 'SP') THEN

IVTYPE=500

ELSE

IVTYPE=CORQ%IVTYP(1)

END IF

(this change is in my branch, swanout1.F near lines 290-294).

2) in swanout1.F, remove line 446 IVTYPE=CORQ%IVTYP(1)

3)in swan_inlet_test.in add

POINTS 'point1' 5000.0 10000.0 SPECOUT 'point1' SPEC2D 'point1.spc2d' OUTPUT 20000101.000000 1 HR

so that this issue can be tested in future releases. In my branch, this is still file INPUT_inlet_test.

#155 arango kate Fixed maxrho/maxspeed bug for multiple serial tiles
Description

The variables maxrho and maxspeed are local to diag.F and therefore not remembered from one tile to the next. Diag will do the wrong thing unless a SAVE is added for them, or they are put in a module with avgke and friends.

Also, the reduction on them is wrong. They are being added instead of maxed.

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