%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Build a CROCO climatology file % % Extrapole and interpole temperature and salinity from a % Climatology to get boundary and initial conditions for % CROCO (climatology and initial netcdf files) . % Get the velocities and sea surface elevation via a % geostrophic computation. % % Data input format (netcdf): % temperature(T, Z, Y, X) % T : time [Months] % Z : Depth [m] % Y : Latitude [degree north] % X : Longitude [degree east] % % Data source : IRI/LDEO Climate Data Library (World Ocean Atlas 1998) % http://ingrid.ldgo.columbia.edu/ % http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NODC/.WOA98/ % % 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) 2002-2006 by Pierrick Penven % e-mail:Pierrick.Penven@ird.fr % % Contributions of P. Marchesiello (IRD) % % Updated 1-Sep-2006 by Pierrick Penven % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all close all %%%%%%%%%%%%%%%%%%%%% USERS DEFINED VARIABLES %%%%%%%%%%%%%%%%%%%%%%%% % % Common parameters % crocotools_param % % Data climatologies file names: % % temp_month_data : monthly temperature climatology % temp_ann_data : annual temperature climatology % salt_month_data : monthly salinity climatology % salt_ann_data : annual salinity climatology % temp_month_data=[climato_dir,'temp_month.cdf']; temp_ann_data=[climato_dir,'temp_ann.cdf']; salt_month_data=[climato_dir,'salt_month.cdf']; salt_ann_data=[climato_dir,'salt_ann.cdf']; % % %%%%%%%%%%%%%%%%%%% END USERS DEFINED VARIABLES %%%%%%%%%%%%%%%%%%%%%%% % % Title % disp(' ') disp([' Making the clim: ',clmname]) disp(' ') disp([' Title: ',CROCO_title]) % % Read in the grid % disp(' ') disp(' Read in the grid...') nc=netcdf(grdname,'r'); Lp=length(nc('xi_rho')); Mp=length(nc('eta_rho')); hmax=max(max(nc{'h'}(:))); close(nc); %---------------------------------------------------------------------------- % Create the climatology file %---------------------------------------------------------------------------- if (makeclim) disp(' ') disp(' Create the climatology file...') if ~exist('vtransform') vtransform=1; %Old Vtransform disp([' NO VTRANSFORM parameter found']) disp([' USE VTRANSFORM default value vtransform = 1']) end create_climfile(clmname,grdname,CROCO_title,... theta_s,theta_b,hc,N,... woa_time,woa_cycle,'clobber',vtransform); end if (makeoa) % % Create the OA file % disp(' ') disp(' Create the OA file...') nc=netcdf(temp_ann_data,'r'); Z=nc{'Z'}(:); kmax=max(find(Z