/[MITgcm]/MITgcm_contrib/gael/matlab_class/@gcmfaces/exch_UV_N.m
ViewVC logotype

Annotation of /MITgcm_contrib/gael/matlab_class/@gcmfaces/exch_UV_N.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Wed Feb 10 14:43:47 2010 UTC (15 years, 5 months ago) by gforget
Branch: MAIN
matlab_class core routine: gcmfaces methods

1 gforget 1.1 function [aU,aV]=exch_UV_N(bU,bV,varargin);
2    
3     if strcmp(bU.gridType,'llc');
4     [aU,aV]=exch_UV_N_llc(bU,bV,varargin{:});
5     elseif strcmp(bU.gridType,'cube');
6     [aU,aV]=exch_UV_N_cube(bU,bV,varargin{:});
7     elseif strcmp(bU.gridType,'llpc');
8     [aU,aV]=exch_UV_N_llpc(bU,bV,varargin{:});
9     elseif strcmp(bU.gridType,'ll');
10     [aU,aV]=exch_UV_N_ll(bU,bV,varargin{:});
11     else;
12     error(['exch_UV_N not implemented for ' bU.gridType '!?']);
13     end;
14    

  ViewVC Help
Powered by ViewVC 1.1.22