Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (115 - 117 of 964)

Ticket Owner Reporter Resolution Summary
#536 arango arango Fixed Corrected typo in sediment_mod.h
Description

Corrected a typo in ROMS/Nonlinear/Sediment/sediment_mod.h during the allocation of variable transC and transN. We need to have instead:

#if defined MIXED_BED
      IF (.not.allocated(transC)) THEN
        allocate ( transC(Ngrids) )
        transC = IniVal
      END IF
      IF (.not.allocated(transN)) THEN
        allocate ( transN(Ngrids) )
        transN = IniVal
      END IF
#endif

Many thanks to Alfredo Aretxabaleta for bringing this to my attention.

#538 arango arango Done Updated Matlab script d_obc_roms2roms.m
Description

I updated the script matlab/boundary/d_obc_roms2roms.m and added a call to force Java to clean garbage collection when computing a long time-series. We may get Java exception errors about heap space when reading input files from an OpenDAP server, if applicable.

% If processing an OpenDAP file, force Java garbage collection.

  if (nc_url(NWAdata)),
    java.lang.System.gc
  end

Also, notice that if we want to restart the computation, we can set CREATE = false and get the record of the last boundary conditions processed for appending.

if (CREATE)
  BryRec = 0;
else
  BryRec = length(nc_read(BRYname,'bry_time'));
end

#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.

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