Custom Query (986 matches)
Results (922 - 924 of 986)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#686 | Invalid | DSTART ignored with ANA_INITIAL | ||
Description |
With ANA_INITIAL, the model time gets overwritten: ROMS/Nonlinear/initial.F: time(ng)=io_time ! needed for shared-memory so that setting DSTART is ignored. The variable io_time is set in get_state.F which isn't called in the ANA_INITIAL case. I don't see how INI_FILE can be activated with analytical initial conditions. |
|||
#688 | Fixed | Bug in utility/rotate_vec.m | ||
Description |
At lines 126:127 for 3D vector fields, we should have in rotate_vec.m: Vout(i,1:Mm,:)=-UatV(1,2:M ,:).*sin(Vangle(1,1:Mm,:))- ... Vinp(i,1:Mm,:).*cos(Vangle(1,1:Mm,:)); instead of Vout(i,1:Mm)=-UatV(1,2:M ).*sin(Vangle(1,1:Mm))- ... Vinp(i,1:Mm).*cos(Vangle(1,1:Mm)); This is for the rotation at the edges [1,L] of the vector field. Thank you. |
|||
#731 | Fixed | roms_metadata.m bugs | ||
Description |
river_temp and river_salt entries don't name the river and s_rho dimensions correctly. queequeg:netcdf wilkin$ svn diff Index: roms_metadata.m =================================================================== --- roms_metadata.m (revision 848) +++ roms_metadata.m (working copy) @@ -2521,9 +2521,9 @@ V.Dimensions(1).Name = 'river'; V.Dimensions(1).Length = []; V.Dimensions(1).Unlimited = false; - V.Dimensions(1).Name = 's_rho'; - V.Dimensions(1).Length = []; - V.Dimensions(1).Unlimited = false; + V.Dimensions(2).Name = 's_rho'; + V.Dimensions(2).Length = []; + V.Dimensions(2).Unlimited = false; V.Dimensions(3).Name = 'river_time'; V.Dimensions(3).Length = []; V.Dimensions(3).Unlimited = Unlimited; @@ -2543,9 +2543,9 @@ V.Dimensions(1).Name = 'river'; V.Dimensions(1).Length = []; V.Dimensions(1).Unlimited = false; - V.Dimensions(1).Name = 's_rho'; - V.Dimensions(1).Length = []; - V.Dimensions(1).Unlimited = false; + V.Dimensions(2).Name = 's_rho'; + V.Dimensions(2).Length = []; + V.Dimensions(2).Unlimited = false; V.Dimensions(3).Name = 'river_time'; V.Dimensions(3).Length = []; V.Dimensions(3).Unlimited = Unlimited; |
Note:
See TracQuery
for help on using queries.