%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Create and fill CROCO clim and bry files with OGCM data. % % The on-line reference to SODA is at % http://iridl.ldeo.columbia.edu./SOURCES/.CARTON-GIESE/.SODA/ % The on-line reference to ECCO is at % http://ecco.jpl.nasa.gov/cgi-bin/nph-dods/datasets/ % % Further Information: % http://www.croco-ocean.org % % This file is part of CROCOTOOLS % % CROCOTOOLS is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published % by the Free Software Foundation; either version 2 of the License, % or (at your option) any later version. % % CROCOTOOLS is distributed in the hope that it will be useful, but % WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % % You should have received a copy of the GNU General Public License % along with this program; if not, write to the Free Software % Foundation, Inc., 59 Temple Place, Suite 330, Boston, % MA 02111-1307 USA % % Copyright (c) 2005-2006 by Pierrick Penven % e-mail:Pierrick.Penven@ird.fr % % Contributions of P. Marchesiello (IRD), J. Lefevre (IRD), % and F. Colberg (UCT) % % Updated 6-Sep-2006 by Pierrick Penven % Update 13 -Sep-2009 by Gildas Cambon (IRD) % Update 14 -March-2011 by Gildas Cambon & Serena Illig (IRD) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %start % to be used in batch mode % clear all close all %%%%%%%%%%%%%%%%%%%%% USERS DEFINED VARIABLES %%%%%%%%%%%%%%%%%%%%%%%% % % Common parameters % crocotools_param_EPAC % if strcmp(OGCM,'SODA') % % SODA DODS URL % % SODA 2.0.2-4 %url= 'http://apdrc.soest.hawaii.edu:80/dods/public_data/SODA/soda_pop2.0.4' % SODA_2.1.6 [ ERA40/QSCAT 1958-2008 / POP2.1 / WOD09 ] %%url='http://iridl.ldeo.columbia.edu/SOURCES/.CARTON-GIESE/.SODA/.v2p1p6' ; %url='http://apdrc.soest.hawaii.edu:80/dods/public_data/SODA/soda_pop2.1.6' ; % SODA_2.2.4/ [ C20R-2 1871-2008 / POP2.1 ] %%url='http://iridl.ldeo.columbia.edu/SOURCES/.CARTON-GIESE/.SODA/.v2p2p4' ; url='http://apdrc.soest.hawaii.edu:80/dods/public_data/SODA/soda_pop2.2.4' ; elseif strcmp(OGCM,'ECCO') % % ECCO DODS URL % % Kalman filter % % url = 'http://ecco.jpl.nasa.gov/thredds/dodsC/las/kf080/kf080_'; url = 'http://ecco2.jpl.nasa.gov:80/opendap/data1/cube/cube92/lat_lon/quart_90S_90N/' % else error(['Unknown OGCM: ',OGCM]) end % itolap_tot=itolap_a + itolap_p; disp(['Overlap before =',num2str(itolap_a)]) disp(['Overlap after =',num2str(itolap_p)]) disp(['Total overlap =',num2str(itolap_tot)]) disp(['...']) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % end of user input parameters %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % disp(['===================']) disp([' Compute time axis ']) disp(['===================']) if level==0 nc_suffix='.nc'; else nc_suffix=['.nc.',num2str(level)]; grdname=[grdname,'.',num2str(level)]; end % % Get the model grid % nc=netcdf(grdname); lon=nc{'lon_rho'}(:); lat=nc{'lat_rho'}(:); angle=nc{'angle'}(:); h=nc{'h'}(:); close(nc) % % Extract data over the internet % if Download_data==1 % % Get the model limits % lonmin=min(min(lon)); lonmax=max(max(lon)); latmin=min(min(lat)); latmax=max(max(lat)); % % Download data with DODS (the download matlab routine depends on the OGCM) % if ~exist('Get_My_DataOGCM') | ( Get_My_DataOGCM == 0) ; disp('Download data...') eval(['download_',OGCM,'(Ymin,Ymax,Mmin,Mmax,lonmin,lonmax,latmin,latmax,',... 'OGCM_dir,OGCM_prefix,url,Yorig)']) else %Reference to Oforc_OGCM/Mydata routines : specific routines to your own data disp('Use my own data...') disp('Specific routines for your own OGCM datasets') disp(['Flag Get_My_DataOGCM declared and =1']) disp([' ']) disp(['Located at ',url_mydataOGCM]) eval(['download_',OGCM,'_Mydata(Ymin,Ymax,Mmin,Mmax,lonmin,lonmax,latmin,latmax,',... 'OGCM_dir,OGCM_prefix,url_mydataOGCM,Yorig)']) end end % %------------------------------------------------------------------------------------ % % Get the OGCM grid % nc=netcdf([OGCM_dir,OGCM_prefix,'Y',num2str(Ymin),'M',num2str(Mmin),'.cdf']); lonT=nc{'lonT'}(:); latT=nc{'latT'}(:); lonU=nc{'lonU'}(:); latU=nc{'latU'}(:); lonV=nc{'lonV'}(:); latV=nc{'latV'}(:); Z=-nc{'depth'}(:); NZ=length(Z); NZ=NZ-rmdepth; Z=Z(1:NZ); close(nc) % % Initial file % (the strategy is to start at the begining of a month) % it is possible to do some temporal interpolation... % but I am too lazy. lets start the first day of % month Mmin of year Ymin... with the first data available. % if makeini==1 if ~exist('vtransform') vtransform=1; %Old Vtransform disp([' NO VTRANSFORM parameter found']) disp([' USE vtransform default value Vtransfor = 1']) end ininame=[ini_prefix,'Y',num2str(Ymin),'M',num2str(Mmin),nc_suffix]; % % Process the time in Yorig time (i.e days since Yorig-01-01) % tini=datenum(Ymin,Mmin,1)-datenum(Yorig,1,1); disp(['Create an initial file for ',datestr(tini+datenum(Yorig,1,1));]) create_inifile(ininame,grdname,CROCO_title,... theta_s,theta_b,hc,N,... tini,'clobber', vtransform); nc_ini=netcdf(ininame,'write'); interp_OGCM(OGCM_dir,OGCM_prefix,Ymin,Mmin,Roa,interp_method,... lonU,latU,lonV,latV,lonT,latT,Z,1,... nc_ini,[],lon,lat,angle,h,1,obc,vtransform) close(nc_ini) end % % Clim and Bry files % if makeclim==1 | makebry==1 if ~exist('vtransform') vtransform=1; %Old Vtransform disp([' NO VTRANSFORM parameter found']) disp([' USE vtransform default value Vtransfor = 1']) end % % Loop on the years and the months % for Y=Ymin:Ymax if Y==Ymin mo_min=Mmin; else mo_min=1; end if Y==Ymax mo_max=Mmax; else mo_max=12; end for M=mo_min:mo_max disp(' ') disp(['Processing year ',num2str(Y),... ' - month ',num2str(M)]) disp(' ') % Mm=M-1;Ym=Y; if Mm==0 Mm=12; Ym=Y-1; end Mp=M+1;Yp=Y; if Mp==13 Mp=1; Yp=Y+1; end % % Add 2 times step in the CROCO files: 1 at the beginning and 1 at the end % nc=netcdf([OGCM_dir,OGCM_prefix,'Y',num2str(Y),'M',num2str(M),'.cdf']); OGCM_time=nc{'time'}(:); ntimes=length(OGCM_time); if ntimes==1 dt=30; % monthly files (SODA..) else dt=max(gradient(OGCM_time)); end % %% Fill the time axis % croco_time=0*(1:ntimes+itolap_tot); %Current month croco_time(itolap_a+1:end-itolap_p)=OGCM_time; % %Previous month % disp(['===================================']) for aa= 1:itolap_a disp(['Compute beginning overlap, time index:',num2str(aa)]) disp(['Add ',num2str(-(itolap_a + 1 - aa)), ' timestep dt']) disp(['--------']) croco_time(aa) = croco_time(itolap_a+1) - ((itolap_a + 1 - aa).* dt); end % %Next month % disp(['===================================']) for aa= 1:itolap_p disp(['Compute end overlap, time index:',num2str(ntimes+itolap_tot - itolap_p + aa)]) disp(['Add ',num2str(aa), ' timestep dt']) disp(['--------']) croco_time(end - itolap_p + aa ) = croco_time(end - itolap_p) + aa.* dt; end disp(['===================================']) close(nc) %----------------------------------------------------- % % Create and open the CROCO files % if makebry==1 bryname=[bry_prefix,'Y',num2str(Y),... 'M',num2str(M),nc_suffix]; create_bryfile(bryname,grdname,CROCO_title,[1 1 1 1],... theta_s,theta_b,hc,N,... croco_time,0,'clobber',vtransform); nc_bry=netcdf(bryname,'write'); else nc_bry=[]; end if makeclim==1 clmname=[clm_prefix,'Y',num2str(Y),... 'M',num2str(M),nc_suffix]; create_climfile(clmname,grdname,CROCO_title,... theta_s,theta_b,hc,N,... croco_time,0,'clobber',vtransform); nc_clm=netcdf(clmname,'write'); else nc_clm=[]; end % % Check if there are OGCM files for the previous Month % fname=[OGCM_dir,OGCM_prefix,'Y',num2str(Ym),'M',num2str(Mm),'.cdf']; if exist(fname)==0 disp([' No data for the previous month: using current month']) Mm=M; Ym=Y; tndx_OGCM=ones(itolap_a,1); else nc=netcdf(fname); tndx_OGCM=[(length(nc('time'))- (itolap_a -1) ):1: (length(nc('time')))]; close(nc) end % % Perform the interpolations for the previous month % disp(' Previous month :') disp('=================') for aa=1:itolap_a disp(['Beg overlap # ', num2str(aa),' -> tindex ',num2str(aa)]) disp(['It. of prev month used for it= ',num2str(tndx_OGCM(aa))]) interp_OGCM(OGCM_dir,OGCM_prefix,Ym,Mm,Roa,interp_method,... lonU,latU,lonV,latV,lonT,latT,Z,tndx_OGCM(aa),... nc_clm,nc_bry,lon,lat,angle,h,aa,obc,vtransform) end % % Perform the interpolations for the current month % disp(' Current month :') disp('================') for tndx_OGCM=1:ntimes disp([' Time step : ',num2str(tndx_OGCM),' of ',num2str(ntimes),' :']) interp_OGCM(OGCM_dir,OGCM_prefix,Y,M,Roa,interp_method,... lonU,latU,lonV,latV,lonT,latT,Z,tndx_OGCM,... nc_clm,nc_bry,lon,lat,angle,h,tndx_OGCM+itolap_a,obc,vtransform) end % % Read the OGCM file for the next month % fname=[OGCM_dir,OGCM_prefix,'Y',num2str(Yp),'M',num2str(Mp),'.cdf']; if exist(fname)==0 disp([' No data for the next month: using current month']) Mp=M; Yp=Y; for aa=1:itolap_p tndx_OGCM(aa)=ntimes; end else for aa=1:itolap_p tndx_OGCM(aa)=aa; end; end % % Perform the interpolations for the next month % disp(' Next month :') disp('=============') for aa=1:itolap_p disp(['End Overlap #',num2str(aa),' -> tindex ',num2str(ntimes+itolap_a+aa)]) disp(['It. of next month used for it= ',num2str(tndx_OGCM(aa))]) interp_OGCM(OGCM_dir,OGCM_prefix,Yp,Mp,Roa,interp_method,... lonU,latU,lonV,latV,lonT,latT,Z,tndx_OGCM(aa),... nc_clm,nc_bry,lon,lat,angle,h,ntimes+itolap_a+aa,obc,vtransform) end % % Close the CROCO files % if ~isempty(nc_clm) close(nc_clm); end if ~isempty(nc_bry) close(nc_bry); end % end end end % % Spin-up: (reproduce the first year 'SPIN_Long' times) % just copy the files for the first year and change the time % if SPIN_Long>0 % % Initial file % if makeini==1 % % Copy the file % ininame=[ini_prefix,'Y',num2str(Ymin),'M',num2str(Mmin),nc_suffix]; ininame2=[ini_prefix,'Y',num2str(Ymin-SPIN_Long),'M',num2str(Mmin),nc_suffix]; disp(['Create ',ininame2]) eval(['!cp ',ininame,' ',ininame2]) % % Change the time % nc=netcdf(ininame2,'write'); time=nc{'scrum_time'}(:)-365.*SPIN_Long*(24*3600); nc{'scrum_time'}(:)=time; close(nc) end % M=Mmin-1; Y=Ymin-SPIN_Long; for month=1:12*SPIN_Long M=M+1; if M==13 M=1; Y=Y+1; end % % Climatology files % if makeclim==1 % % Copy the file % clmname=[clm_prefix,'Y',num2str(Ymin),'M',num2str(M),nc_suffix]; clmname2=[clm_prefix,'Y',num2str(Y),'M',num2str(M),nc_suffix]; disp(['Create ',clmname2]) eval(['!cp ',clmname,' ',clmname2]) % % Change the time % nc=netcdf(clmname2,'write'); time=nc{'tclm_time'}(:)-365.*(Ymin-Y); nc{'tclm_time'}(:)=time; nc{'temp_time'}(:)=time; nc{'sclm_time'}(:)=time; nc{'salt_time'}(:)=time; nc{'uclm_time'}(:)=time; nc{'vclm_time'}(:)=time; nc{'v2d_time'}(:)=time; nc{'v3d_time'}(:)=time; nc{'ssh_time'}(:)=time; nc{'zeta_time'}(:)=time; close(nc) end % % Boundary files % if makebry==1 % % Copy the file % bryname=[bry_prefix,'Y',num2str(Ymin),'M',num2str(M),nc_suffix]; bryname2=[bry_prefix,'Y',num2str(Y),'M',num2str(M),nc_suffix]; disp(['Create ',bryname2]) eval(['!cp ',bryname,' ',bryname2]) % % Change the time % nc=netcdf(bryname2,'write'); time=nc{'bry_time'}(:)-365.*(Ymin-Y); nc{'bry_time'}(:)=time; close(nc) end end end %--------------------------------------------------------------- % Make a few plots %--------------------------------------------------------------- if makeplot==1 disp(' ') disp(' Make a few plots...') if makeini==1 ininame=[ini_prefix,'Y',num2str(Ymin),'M',num2str(Mmin),nc_suffix]; figure test_clim(ininame,grdname,'temp',1,coastfileplot) figure test_clim(ininame,grdname,'salt',1,coastfileplot) end if makeclim==1 clmname=[clm_prefix,'Y',num2str(Y),'M',num2str(M),nc_suffix]; figure test_clim(clmname,grdname,'temp',1,coastfileplot) figure test_clim(clmname,grdname,'salt',1,coastfileplot) end if makebry==1 bryname=[bry_prefix,'Y',num2str(Y),'M',num2str(M),nc_suffix]; figure test_bry(bryname,grdname,'temp',1,obc) figure test_bry(bryname,grdname,'salt',1,obc) figure test_bry(bryname,grdname,'u',1,obc) figure test_bry(bryname,grdname,'v',1,obc) end end