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

Annotation of /MITgcm_contrib/gael/matlab_class/@gcmfaces/exch_T_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 [a]=exch_T_N(b,varargin);
2    
3     if strcmp(b.gridType,'llc');
4     a=exch_T_N_llc(b,varargin{:});
5     elseif strcmp(b.gridType,'cube');
6     a=exch_T_N_cube(b,varargin{:});
7     elseif strcmp(b.gridType,'llpc');
8     a=exch_T_N_llpc(b,varargin{:});
9     elseif strcmp(b.gridType,'ll');
10     a=exch_T_N_ll(b,varargin{:});
11     else;
12     error(['exch_T_N not implemented for ' b.gridType '!?']);
13     end;
14    

  ViewVC Help
Powered by ViewVC 1.1.22