I, and some Europeans doing particle tracking with ROMS output, are confused by what the units of omega are supposed to be in the output. From equation 12 of https://www.myroms.org/wiki/Terrain-Fol ... sformation , the units of omega should be w/Hz or 1/time since Hz=(partial z)/(partial s) with units of length. I think this is consistent with the calculation of w in wvelocity.F
In the netCDF output file, omega is described as having units of meters/second,
Code: Select all
float omega(ocean_time, s_w, eta_rho, xi_rho) ;
omega:long_name = "S-coordinate vertical momentum component" ;
omega:units = "meter second-1" ;
omega:time = "ocean_time" ;
omega:grid = "grid" ;
omega:location = "face" ;
omega:coordinates = "x_rho y_rho s_w ocean_time" ;
omega:field = "omega, scalar, series" ;
Code: Select all
'omega' ! Output
'S-coordinate vertical momentum component'
'meter3 second-1' ! [m3/s]
'omega, scalar, series'
'ocean_time'
'idOvel'
'w3dvar'
1.0d0
Oops, I just found this post: viewtopic.php?t=2139 . Krystin Thyng tracks down that omega is multiplied by Hz before being written out, so has units of m/s; can we change this in varinfo.dat?
Jamie