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

Annotation of /MITgcm_contrib/gael/matlab_class/@gcmfaces/exch_UV.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(bU,bV);
2    
3     if strcmp(bU.gridType,'llc');
4     [aU,aV]=exch_UV_llc(bU,bV);
5     elseif strcmp(bU.gridType,'cube');
6     [aU,aV]=exch_UV_cube(bU,bV);
7     elseif strcmp(bU.gridType,'llpc');
8     [aU,aV]=exch_UV_llpc(bU,bV);
9     elseif strcmp(bU.gridType,'ll');
10     [aU,aV]=exch_UV_ll(bU,bV);
11     else;
12     error(['exch_UV not implemented for ' bU.gridType '!?']);
13     end;
14    

  ViewVC Help
Powered by ViewVC 1.1.22