Hi Shi-Ming,
Many thanks for your suggestions.
I found another main reason of the right turning of grid is I did not notice that the first point of boundary.dat file read by seagrid must be in up-left corner. I have changed the rearrangement from
8.0 -38.0 1
22.0 -38.0 1
22.0 -26.0 1
8.0 -26.0 1 ...
Search found 5 matches
- Thu Mar 24, 2016 1:43 am
- Forum: ROMS Tools and Techniques
- Topic: Problems in using Arango 's matlab scripts
- Replies: 8
- Views: 10049
- Sun Mar 20, 2016 3:10 am
- Forum: ROMS Tools and Techniques
- Topic: Problems in using Arango 's matlab scripts
- Replies: 8
- Views: 10049
Problems in using Arango 's matlab scripts
Hi. I'm a new learner of roms. I used to prepare the gird files etc. with "ROMSTOOLS" which belong to ROMS_AGRIF version before. But I want to turn to Rutgers version because it can deal with sea ice problem. But it is difficult for me to prepare the grid, forcing, boundary and initial files. I knew ...
- Thu Oct 29, 2015 6:53 pm
- Forum: ROMS Usage
- Topic: RNT toolbox
- Replies: 6
- Views: 11453
Re: RNT toolbox
I found that if you comment line 77,78 and 82 with "print *," as prefixes in file "rnt_oa2d_mex.f", no error appear in windows system.
- Thu Oct 22, 2015 2:42 am
- Forum: ROMS Usage
- Topic: RNT toolbox
- Replies: 6
- Views: 11453
Re: RNT toolbox
I have the same problem as "forrtl:severe (38):error during write,unit -1,file CONOUT$" in windows system when running "rnt_oa2d_mex.mexw32". But strangely some functions like "rnt_hindicesTRI_mex.mexw32, rnt_fill_mex.mexw32" are workable. And I also failed in compiling the *.f files in Ubuntu ...
- Tue Oct 13, 2015 11:28 am
- Forum: ROMS Usage
- Topic: empty netcdf file using rgrd_AnaGrid from the rnt toolbox
- Replies: 4
- Views: 15391
Re: empty netcdf file using rgrd_AnaGrid from the rnt toolbo
I have the same problem in matlab R2014a. I find that the code
nc=netcdf(filename,'w');
.....
nc{'xl'}(:)=xl;
will not write xl in the netcdf file, which means the "write" permission failed. Alternatively, I use matlab function
nccreate(filename,'xl');
ncwrite(filename,'xl',xl);
This will ...
nc=netcdf(filename,'w');
.....
nc{'xl'}(:)=xl;
will not write xl in the netcdf file, which means the "write" permission failed. Alternatively, I use matlab function
nccreate(filename,'xl');
ncwrite(filename,'xl',xl);
This will ...