Custom Query (986 matches)
Results (400 - 402 of 986)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#504 | Done | IMPORTANT: Updated Test Cases to ROMS 3.5 | ||
Description |
Updated the ROMS Test Cases input scripts (ocean_*.in) and build (build.bash and build.sh) scripts to ROMS 3.5. Notice that now we have logic to splitting input fields time records into several NetCDF files. This is useful when splitting input data (climatology, boundary, forcing) time records into several files (say monthly, annual, etc). In this case, each multiple file entry line needs to be ended by the vertical bar (|) symbol. For example: NFFILES == 8 ! number of forcing files FRCNAME == my_rivers.nc \ my_tides.nc \ my_lwrad_year1.nc | my_lwrad_year2.nc \ my_swrad_year1.nc | my_swrad_year2.nc \ my_winds_year1.nc | my_winds_year2.nc \ my_Pair_year1.nc | my_Pair_year2.nc \ my_Qair_year1.nc | my_Qair_year2.nc \ my_Tair_year1.nc | my_Tair_year2.nc Notice that NFFILES is 8 and not 14. There are 8 uniquely different fields in the file list, we do not count file entries followed by the vertical bar symbol. This is because multiple file entries are processed in ROMS with derived type structures. Also notice that in ROMS 3.5 we don't longer have the environmental variable NestedGrids in the makefile or the build script. The number of nested grids are now specified in ocean.in: ! Number of nested grids. Ngrids = 1 This required a substantial change of all parameters that depends on the Ngrids dimension. We need to allocate them. Also notice that in order to use the build scripts from version 3.5 with older versions of ROMS, you need to set the following environmental variable in your login .cshrc or .tcshrc: setenv NestedGrids 1 Recall that in the Test Cases you can specify different versions of ROMS in the build script. |
|||
#505 | Fixed | Vorticity Calculation in vorticity.F | ||
Description |
Hello, I was very glad to see vorticity added to average file output. However, I believe there are a few issues with the way it is being calculated:
I might be missing something, of course. I've attached a diff file in case it is useful. Best Regards, Carlos |
|||
#506 | Fixed | Updated biological models to include allocation of Ngrids depending parameters | ||
Description |
I updated all the biological models to allocate parameters that depend on the nested grid parameter Ngrids. Recall that in ROMS 3.5 all the parameters that depend on Ngrids need to be allocated (see release notes). I forgot to make this change in src:ticket:504. This change affected the following files located in the ROMS/Nonlinear/Biology directory:
|