Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (892 - 894 of 964)

Ticket Owner Reporter Resolution Summary
#547 arango wilkin Fixed ana_m2obc.h ESTUARY_TEST bug
Description

In the conversion to the new open boundary conditions logical flags a bug was introduced in the block:

#if defined ESTUARY_TEST
      IF (LBC(ieast,isUbar,ng)%acquire.and.                             &
     &    LBC(ieast,isVbar,ng)%acquire.and.                             &
     &    DOMAIN(ng)%Western_Edge(tile)) THEN ...
        ...

The test should be on LBC(iwest ... not east.

#608 arango m.hadfield Done Support for new Gnu make version
Description

Version 4.0 of Gnu make is now available, so the NEED_VERSION variable in the ROMS makefile needs to be changed to

NEED_VERSION := 3.80 3.81 3.82 3.82.90 4.0

#637 arango jcwarner Fixed diagnostics bug
Description

Not sure why this was not seen before. But most likely because the idiag index was not exceeded. There is a bug in step3d_uv.F, line 937 needs to be in an idiag loop the code now has:

# if defined DIAGNOSTICS_UV && defined MASKING
          DO k=1,N(ng)
            DO i=Istr,Iend
              DiaV3wrk(i,j,k,idiag)=DiaV3wrk(i,j,k,idiag)*vmask(i,j)
            END DO
          END DO
# endif

but it really needs to be:

# if defined DIAGNOSTICS_UV && defined MASKING
          DO k=1,N(ng)
            DO i=Istr,Iend
              DO idiag=1,NDM3d
                DiaV3wrk(i,j,k,idiag)=DiaV3wrk(i,j,k,idiag)*vmask(i,j)
              END DO
            END DO
          END DO
# endif
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.