%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Make 1 plot from the results of the UPWELLING test case % % Further Information: % http://www.brest.ird.fr/Roms_tools/ % % This file is part of ROMSTOOLS % % ROMSTOOLS 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. % % ROMSTOOLS 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 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all close all tndx=5; nc=netcdf('roms_avg.nc'); time=(nc{'scrum_time'}(tndx))/(24*3600); h=nc{'h'}(:); y=squeeze(nc{'y_rho'}(:,2)); zeta=squeeze(nc{'zeta'}(tndx,:,:)); t=squeeze(nc{'temp'}(tndx,:,:,2)); u=squeeze(nc{'u'}(tndx,:,:,2)); [N,M]=size(t); theta_s=nc.theta_s(:); theta_b=nc.theta_b(:); hc=nc.hc(:); close(nc); zr = zlevs(h,zeta,theta_s,theta_b,hc,N,'r'); zr=squeeze(zr(:,:,1)); yr=reshape(y,1,M); yr=repmat(yr,[N 1])/1000; contourf(yr,zr,t,[9:0.5:20]) shading flat colorbar caxis([10 18]) hold on [C1,h1,]=contour(yr,zr,100*u,[-100:20:100],'k'); clabel(C1,h1) title(['UPWELLING - temp [^oC] - day = ',num2str(time)])