Hi,
I would like to know if it is possible to find the angle between (xi,eta) points and true east points using only the history file.
Search found 11 matches
- Mon Oct 20, 2014 6:42 pm
- Forum: ROMS Discussion
- Topic: Angle between (xi,eta) points and true east at rho points
- Replies: 1
- Views: 1660
- Mon May 19, 2014 2:43 am
- Forum: ROMS Problems
- Topic: I/O error ............... exit_flag: 4 in SHOREFACE case
- Replies: 3
- Views: 3035
Re: I/O error ............... exit_flag: 4 in SHOREFACE case
Forget about the "$" symbol, it just means that doesn't need to be a -su user. Try just:
svn update -r 700
svn update -r 700
- Sun May 18, 2014 4:15 am
- Forum: ROMS Problems
- Topic: I/O error ............... exit_flag: 4 in SHOREFACE case
- Replies: 3
- Views: 3035
Re: I/O error ............... exit_flag: 4 in SHOREFACE case
Hi
You are right. I just ran the test case and it gave me the same results. But I managed to run it successfully by downgrading the revision version.
Try this in the ROMS source directory:
$ svn update 700 -r
Good luck!
You are right. I just ran the test case and it gave me the same results. But I managed to run it successfully by downgrading the revision version.
Try this in the ROMS source directory:
$ svn update 700 -r
Good luck!
- Tue May 13, 2014 8:51 pm
- Forum: ROMS Installation
- Topic: error in downloading the NetCDF source code
- Replies: 1
- Views: 2340
Re: error in downloading the NetCDF source code
Hi,
Just search for netcdf in any search engine. It should give you this page.
http://www.unidata.ucar.edu/software/netcdf/
Look for the lastest stable Netcdf release.
Remember to install both the Netcdf-C and Netcdf-fortran and in that order.
Just search for netcdf in any search engine. It should give you this page.
http://www.unidata.ucar.edu/software/netcdf/
Look for the lastest stable Netcdf release.
Remember to install both the Netcdf-C and Netcdf-fortran and in that order.
- Wed Jan 22, 2014 4:51 pm
- Forum: ROMS Bugs
- Topic: c_climatology
- Replies: 0
- Views: 2322
c_climatology
This bug causes the following error in matlab: Reference to non-existent filed: Dname.v3d_time if (S.def_zeta), Dname.zeta_time = 'zeta_time'; Dsize.zeta_time = S.zeta_time; end if (S.def_v2d), Dname.v2d_time = 'v2d_time'; Dsize.v2d_time = S.v2d_time; end if (S.def_v3d), Dname.v2d_time = 'v3d_time ...
- Mon Jan 13, 2014 2:23 pm
- Forum: ROMS Problems
- Topic: READ_PHYPAR - could not find input file:
- Replies: 1
- Views: 2876
READ_PHYPAR - could not find input file:
Hi I am running a simulation of a part of the southern shore of Puerto Rico by performing an offline nesting from a Regional simulation (Puerto Rico). No matter what I do, I still getting the same error: Output/Input Files: Output Restart File: ocean_rst.nc Output History File: ocean_his.nc Output ...
- Sat Jan 11, 2014 9:16 pm
- Forum: ROMS Problems
- Topic: Doubts about header file:
- Replies: 1
- Views: 2524
Doubts about header file:
For my simulation I have two files for forcing, one has the following variables and the other one has tidal forcing from OTPS. My questions is having these variables (below) which analytical options I need to have define in order to run the simulation. variables: double sustr(ndfd_time, eta_u, xi_u ...
- Sat Jan 11, 2014 8:46 pm
- Forum: ROMS Problems
- Topic: Multiple Boundary files - No found
- Replies: 1
- Views: 2081
Re: Multiple Boundary files - No found
I was wrong. It is the input file that cannot be found and I don't know why.
- Sat Jan 11, 2014 8:33 pm
- Forum: ROMS Problems
- Topic: Multiple Boundary files - No found
- Replies: 1
- Views: 2081
Multiple Boundary files - No found
I running a simulation in the southern shore of Puerto Rico and I changed from using one boundary file to use multiples, but I started getting an error when running the executable. In this case I just have two boundary files. I had ran this simulation before with one boundary file without a problem ...
- Tue Aug 06, 2013 9:55 pm
- Forum: ROMS Discussion
- Topic: Plot velocity vectors
- Replies: 11
- Views: 9932
Re: Plot velocity vectors
I know the u-,v-, and RHO points are not the same. What I was trying to explain is that in the input file there is an option that can be activated in order to save in the history file the u and v fields at rho points so you have both fields at the same points. Hout(idu3dE) == T ! u_eastward 3D U ...
- Fri Aug 02, 2013 2:31 am
- Forum: ROMS Discussion
- Topic: Plot velocity vectors
- Replies: 11
- Views: 9932
Re: Plot velocity vectors
Well, I don’t use any post-processing routine from ROMS but if you want to get a velocity plot with matlab is quite simple with the quiver function. You could do something like this: quiver(lon_rho,lat_rho,u_eastward( : , : , ‘level’, ‘time’), v_northward( : , : , ‘level’, ‘time’)) Where u_eastward a ...