Custom Query (986 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (115 - 117 of 986)

Ticket Owner Reporter Resolution Summary
#162 arango jcwarner Fixed bulk_flux itermax
Description

Small tiling bug in Nonlinear/bulk_flux.F due to variable Itermax. The variable Itermax is set in an i loop. Itermax takes a value of 1 or 3, depending on the last setting in the i loop.

After that i loop completes, we have

        DO Iter=1,IterMax
          DO i=Istr-1,IendR
.....

Well, the number of iterations for any given i-tile will depend on the last value of Itermax. Thus, the values in an i-tile will depend on how it is tiled.

Solution: dimension Itermax(private_1d_scratch_array) and compute Itermax(i). Then change the order of the do loops as:

        DO i=Istr-1,IendR
          DO Iter=1,IterMax(i)
.....

or just set Itermax = 3 and be done with it (?).

#163 arango arango Fixed Small bug in the observation verification
Description

There is an END DO missing in nl_ocean.h when the observation VERIFICATION option is activated. Many thanks to Gregoire Broquet for reporting this bug.

#164 arango arango Fixed Segmentation fault in tl_lmd_swfrac.F
Description

The declaration of local arrays fac1, fac2, and fac3 was wrong in routine tl_lmd_swfrac.F. Many thanks to Javier Zavala and Julia Levin for reporting this bug.

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