Changeset 7372
- Timestamp:
- 2016-11-29T16:15:44+01:00 (8 years ago)
- Location:
- branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/boundary.f90
r6392 r7372 1529 1529 !> @author J.Paul 1530 1530 !> @date November, 2013 - Initial Version 1531 ! 1531 !> @date June, 2016 1532 !> - Bug fix: take into account that boundaries are compute on T point, 1533 !> but expressed on U,V point 1534 !> 1532 1535 !> @param[inout] td_bdy boundary structure 1533 1536 !> @param[in] td_var variable structure … … 1552 1555 il_max(jp_west )=td_var%t_dim(2)%i_len 1553 1556 1554 il_maxindex(jp_north)=td_var%t_dim(2)%i_len-ip_ghost 1557 ! index expressed on U,V point, move on T point. 1558 il_maxindex(jp_north)=td_var%t_dim(2)%i_len-ip_ghost+1 1555 1559 il_maxindex(jp_south)=td_var%t_dim(2)%i_len-ip_ghost 1556 il_maxindex(jp_east )=td_var%t_dim(1)%i_len-ip_ghost 1560 il_maxindex(jp_east )=td_var%t_dim(1)%i_len-ip_ghost+1 1557 1561 il_maxindex(jp_west )=td_var%t_dim(1)%i_len-ip_ghost 1558 1562 -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/docsrc/2_quickstart.md
r6467 r7372 35 35 Here after we briefly describe how to use each programs, 36 36 and so how to create your own regional configuration. 37 @note As demonstrator for a first start a set of GLORYS files (global reanalysis on *ORCA025* grid), as well as examples of namelists are available [here](https://cloud.mercator-ocean.fr/public.php?service=files&t= 877fb1b6e4f589340fc0df1ea6a53228).37 @note As demonstrator for a first start a set of GLORYS files (global reanalysis on *ORCA025* grid), as well as examples of namelists are available [here](https://cloud.mercator-ocean.fr/public.php?service=files&t=1658ec1aaeda2878f2b3915ed140af37). 38 38 39 39 <!-- ###################################################################### --> … … 440 440 Finally, this **namout** sub-namelist defines the output files.<br/> 441 441 Here we ask for output on 81 processors, with *restart_out.nc* as file "basename".<br/> 442 So SIREN computes the optimal layout for 81 p orcessors442 So SIREN computes the optimal layout for 81 processors 443 443 available,<br/> 444 and split restart on output files named *restart_out_num.nc*, where *num* is the p orc number.444 and split restart on output files named *restart_out_num.nc*, where *num* is the proc number. 445 445 446 446 @note SIREN could also create the other fields you may need for -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/docsrc/5_changeLog.md
r6467 r7372 3 3 @tableofcontents 4 4 5 # Release 6 Initial release (2016-04-11) 5 # Release 2016-11-28 7 6 8 7 ## Changes 9 8 ## New Features 10 9 ## Bug fixes 10 - boundary.f90: take into account that boundaries are compute on T point, but expressed on U,V point 11 - iom_cdf.f90: define type cdf4 as cdf 12 13 release (2016-07-01) 14 15 ## Changes 16 ## New Features 17 ## Bug fixes 18 - correct check of boundary indices 19 20 # Release 21 Initial release (2016-04-11) 11 22 12 23 <HR> -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/file.f90
r6392 r7372 495 495 END SELECT 496 496 ELSE 497 CALL logger_debug("FILE INIT: look for file type "//TRIM(file_init%c_name)) 497 498 file_init%c_type=TRIM(file_get_type(cd_file)) 498 499 ENDIF … … 572 573 CASE('.nc','.cdf') 573 574 CALL logger_debug(" FILE GET TYPE: file "//TRIM(cd_file)//" is cdf") 575 ! Warning : type could be change to cdf4 when opening file. 574 576 file_get_type='cdf' 575 577 CASE('.dimg') -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/grid.f90
r6392 r7372 1341 1341 il_dim(:)=td_var%t_dim(:)%i_len 1342 1342 1343 CALL logger_debug("GRID GET PERIO: use vari bale "//TRIM(td_var%c_name))1343 CALL logger_debug("GRID GET PERIO: use variable "//TRIM(td_var%c_name)) 1344 1344 CALL logger_debug("GRID GET PERIO: fill value "//TRIM(fct_str(td_var%d_fill))) 1345 1345 CALL logger_debug("GRID GET PERIO: first value "//TRIM(fct_str(td_var%d_value(1,1,1,1)))) -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/iom.f90
r5616 r7372 174 174 CASE('cdf') 175 175 CALL iom_cdf_open(td_file) 176 !CASE('cdf4') 176 177 CASE('dimg') 177 178 CALL iom_rstdimg_open(td_file) … … 240 241 CALL iom_rstdimg_close(td_file) 241 242 CASE DEFAULT 243 CALL logger_debug( "IOM CLOSE: type "//TRIM(td_file%c_type)) 242 244 CALL logger_error( "IOM CLOSE: can't close file "//& 243 245 & TRIM(td_file%c_name)//": type unknown " ) -
branches/2015/nemo_v3_6_STABLE/NEMOGCM/TOOLS/SIREN/src/iom_cdf.f90
r6392 r7372 340 340 td_file%c_type='cdf' 341 341 CASE(nf90_format_netcdf4, nf90_format_netcdf4_classic) 342 td_file%c_type='cdf4' 342 td_file%c_type='cdf' 343 !td_file%c_type='cdf4' 343 344 END SELECT 345 CALL logger_debug("IOM CDF GET INFO: type "//TRIM(td_file%c_type)) 344 346 345 347 ! record header infos
Note: See TracChangeset
for help on using the changeset viewer.