%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Make 1 plot from the results of the SHELFRONT test case % % 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 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% clear all close all makepdf=0; tndx=11; nc=netcdf('shelfront_his.nc','r'); 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,(12:0.5:18),'linestyle','none') caxis([12 18]) colorbar hold on [C1,h1]=contour(yr,zr,100*u,(-5:2:9),'k'); clabel(C1,h1) hold off title(['SHELFRONT - temp [^oC] - day = ',num2str(time)]) if makepdf export_fig -transparent -pdf shelfront.pdf end