source: Roms_tools/Diagnostic_tools/get_avgtracer.m @ 2

Last change on this file since 2 was 1, checked in by cholod, 13 years ago

import Roms_Agrif

File size: 1.4 KB
Line 
1function [avgT,avgz0T,surfT]=get_avgtracer(nc,vname,n,rempts,...
2                                           dv,V,dvz0,Vz0,N,ds2d,S);
3%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4%
5%  Get averaged quantities from a ROMS simulation.
6%
7%  Further Information: 
8%  http://www.brest.ird.fr/Roms_tools/
9
10%  This file is part of ROMSTOOLS
11%
12%  ROMSTOOLS is free software; you can redistribute it and/or modify
13%  it under the terms of the GNU General Public License as published
14%  by the Free Software Foundation; either version 2 of the License,
15%  or (at your option) any later version.
16%
17%  ROMSTOOLS is distributed in the hope that it will be useful, but
18%  WITHOUT ANY WARRANTY; without even the implied warranty of
19%  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20%  GNU General Public License for more details.
21%
22%  You should have received a copy of the GNU General Public License
23%  along with this program; if not, write to the Free Software
24%  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25%  MA  02111-1307  USA
26%
27%  Copyright (c) 2006 by Pierrick Penven
28%  e-mail:Pierrick.Penven@ird.fr 
29%
30%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31T=squeeze(nc{vname}(n,:,:,:));
32T=T(:,rempts(3)+1:end-rempts(4),rempts(1)+1:end-rempts(2));
33avgT=sum(sum(sum(T.*dv)))/V;
34avgz0T=sum(sum(sum(T.*dvz0)))/Vz0;
35surfT=sum(sum(squeeze(T(N,:,:)).*ds2d))/S;
Note: See TracBrowser for help on using the repository browser.