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

Contents 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.2 - (show annotations) (download)
Thu Oct 20 20:57:01 2011 UTC (13 years, 9 months ago) by gforget
Branch: MAIN
CVS Tags: checkpoint65x, checkpoint65r, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, HEAD
Changes since 1.1: +1 -0 lines
- add help sections at the top.

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

  ViewVC Help
Powered by ViewVC 1.1.22