Search found 14 matches
- Thu Mar 30, 2023 3:31 pm
- Forum: ROMS Tools and Techniques
- Topic: ROMS tools in 'R'
- Replies: 1
- Views: 7407
Re: ROMS tools in 'R'
As far as I know, no work in that direction is currently being done with R. There was an attempt years ago (see https://github.com/AustralianAntarcticD ... /angstroms), but the project appears to be dormant at the moment.
- Wed Nov 30, 2022 9:00 am
- Forum: ROMS Sediment
- Topic: WRT_AVG ERROR while writing variable 'bed_frac_sand' into history file.
- Replies: 7
- Views: 28124
Re: WRT_AVG ERROR while writing variable 'bed_frac_sand' into history file.
Since you are using ROM AGRIF now called (CROCO), you might want to check their community forum https://forum.croco-ocean.org/questions/ where you can find help related to this version of model.
- Mon Jul 25, 2022 2:33 pm
- Forum: ROMS Tools and Techniques
- Topic: Pyroms installation error
- Replies: 6
- Views: 17164
Re: Pyroms installation error
Hi Kate and others, I can find the netcdf.inc file using the nf-config --all This netCDF-Fortran 4.4.2 has been built with the following features: --cc -> gcc --cflags -> -I/opt/netcdf43/gfortran49/include --fc -> gfortran --fflags -> -I/opt/netcdf43/gfortran49/include --flibs -> -L/opt/netcdf43 ...
- Sat Jul 23, 2022 12:02 pm
- Forum: ROMS Tools and Techniques
- Topic: Pyroms installation error
- Replies: 6
- Views: 17164
Re: Pyroms installation error
Hi Kate and everyone, Now, I have been able to install pyroms but have problem with the SCRIP build. I ran into this hurdle: (model2roms)$ make DEVELOP=1 PREFIX=$PREFIX install ./netcdf.f:44: Error: Can't open included file 'netcdf.inc' make: *** [netcdf.o] Error 1 It seem it can't find a file/obj ...
- Sat Jul 23, 2022 10:56 am
- Forum: ROMS Tools and Techniques
- Topic: Pyroms installation error
- Replies: 6
- Views: 17164
Re: Pyroms installation error
Yes, I do have the iso.f file as well as other seven .f files.
If that's not the issue, I wonder what is?
Code: Select all
[snmor@pyroms]$ ls pyroms/pyroms/src/
interp.f iso.f obs_interp.f remapping.f remapping.f90 remapping_fast.f remapping_fast_weighted.f
- Fri Jul 22, 2022 2:28 pm
- Forum: ROMS Tools and Techniques
- Topic: Pyroms installation error
- Replies: 6
- Views: 17164
Pyroms installation error
Hi All, I'm trying to install pyroms following the instruction from in the github page. Using a conda environment, I have install all the package listed in the git page. However whenever I try to use the following command, pip install -e pyroms/pyroms I get an error ERROR: Command errored out with ...
- Wed Mar 09, 2022 8:32 am
- Forum: ROMS Discussion
- Topic: SIGSEGV, segmentation fault occurred (with Empty log file)
- Replies: 6
- Views: 14057
Re: SIGSEGV, segmentation fault occurred (with Empty log file)
Ok; I will check out the wiki link and familarize myself with some of the idealized case. I come back to this thread very soon.
Thanks
Thanks
- Mon Mar 07, 2022 8:03 pm
- Forum: ROMS Discussion
- Topic: SIGSEGV, segmentation fault occurred (with Empty log file)
- Replies: 6
- Views: 14057
Re: SIGSEGV, segmentation fault occurred (with Empty log file)
Hi John, I checked the line 1039 of mod_ncparams.f90. I seemed like a loop through the state variables: ! Set IDs for state some state variables. ! ic=5 DO i=1,MT ic=ic+1 isTvar(i)=ic END DO isWvel=ic+1 I'm not thoroughly sure why such error occur given that I did get to tamper with the mod_ncparams ...
- Mon Mar 07, 2022 9:09 am
- Forum: ROMS Discussion
- Topic: SIGSEGV, segmentation fault occurred (with Empty log file)
- Replies: 6
- Views: 14057
SIGSEGV, segmentation fault occurred (with Empty log file)
Hi everyone, I am trying to setup a shallow water 2D model in idealized setting. I tried using including grid and initial condition from a netcdf file. While my compilation was mostly OK, when running the model I was greeted with an error. forrtl: severe (174): SIGSEGV, segmentation fault occurred ...
- Wed Jan 19, 2022 9:01 am
- Forum: ROMS Discussion
- Topic: Error in c_initial matlab script
- Replies: 8
- Views: 16682
Re: Error in c_initial matlab script
Perfect!!. Updated the repo and it work now. Thanks Hernan and John. Really appreciate your time. Guess the only issue now remains using RNT Toolbox error (rnt_timectl). I understand that's a seperate issue as the scripts are third-party to the ROMS official script. In any case, I can always work ...
- Tue Jan 18, 2022 9:50 pm
- Forum: ROMS Discussion
- Topic: Error in c_initial matlab script
- Replies: 8
- Views: 16682
Re: Error in c_initial matlab script
Reading the src of c_initial.m it seem there is a delibrate use of mexnc() in the definition of the dimension. This is case for all dimension definition used throughout the script. It isn't clear to me where the use of the native interface netcdf.open or nccreate is used in the file ...
- Tue Jan 18, 2022 9:35 pm
- Forum: ROMS Discussion
- Topic: Error in c_initial matlab script
- Replies: 8
- Views: 16682
Re: Error in c_initial matlab script
Interesting. I can't even find the mexnc() script you provided. A linux recursive find command return empty search result. I just updated/checkout the latest version of the matlab script and still the same issue. svn checkout https://mexcdf.svn.sourceforge.net/svnroot/mexcdf/mexnc/trunk MyDir isn't ...
- Tue Jan 18, 2022 8:44 pm
- Forum: ROMS Discussion
- Topic: Error in c_initial matlab script
- Replies: 8
- Views: 16682
Re: Error in c_initial matlab script
Thanks for the Wilkin. I retried again and still ran into error. The error message now is: Unrecognized function or variable 'mexnc'. Error in c_initial (line 157) [ncid,status]=mexnc('create',ncname,'clobber'); I suspect this has to do with the use of mexnc interface but my version of matlab is ...
- Mon Jan 17, 2022 9:20 am
- Forum: ROMS Discussion
- Topic: Error in c_initial matlab script
- Replies: 8
- Views: 16682
Error in c_initial matlab script
Hi Everyone, I'm a newbie with working in ROMS. I tried the venerable Emmanuel Dilorenzo's intro course and was stuck with using some of his RNT toolkit (especially rnt_timectl - datenum issue). I decided to test the shipped matlab routine provided https://www.myroms.org/wiki/Matlab_Scripts but I ...