/[MITgcm]/MITgcm_contrib/gael/matlab_class/gcmfaces_init.m
ViewVC logotype

Diff of /MITgcm_contrib/gael/matlab_class/gcmfaces_init.m

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

revision 1.2 by gforget, Sun May 2 21:28:52 2010 UTC revision 1.11 by gforget, Fri Aug 5 22:00:03 2011 UTC
# Line 1  Line 1 
1    
2  global mydir; mydir=[pwd '/'];  gcmfaces_global;
3    
4  fid=fopen([mydir 'gcmfaces_path.m'],'wt');  test0=dir('sample_input'); if isempty(test0); fprintf('no sample input data found\n'); return; end;
 fprintf(fid,['global mydir; mydir=''' mydir ''';\n']);  
 fprintf(fid,['addpath ' mydir ';\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_specs/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_IO/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_convert/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_exch/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_maps/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_misc/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_calc/;\n']);  
 fprintf(fid,['addpath ' mydir 'gcmfaces_smooth/;\n']);  
 %fprintf(fid,['addpath ' mydir 'gcmfaces_legacy/;\n']);  
 %fprintf(fid,['addpath ' mydir 'gcmfaces_devel/;\n']);  
 fprintf(fid,['addpath ' mydir 'sample_analysis/;\n']);  
 fprintf(fid,['addpath ' mydir 'sample_processing/;\n']);  
 fclose(fid);  
   
 fprintf('\n\n\n***********message from gcmfaces_init.m************ \n');  
 fprintf(' gcmfaces_path.m was created that, when executed, \n');  
 fprintf(' adds the gcmfaces directories to your path  \n\n\n');  
 fprintf(' ultimately you may want to copy it in your startup.m \n');  
   
 gcmfaces_path;  
   
 fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');  
 fprintf(' starting 1st example routine: plot_one_field ... \n');  
   
 plot_one_field;  
   
 fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');  
 fprintf(' starting 2nd example routine: plot_std_field ... \n');  
   
 plot_std_field;  
   
 fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');  
 fprintf(' >>> initialization of gcmfaces completed correctly \n');  
 fprintf(' >>> you are all set and may now use the gcmfaces package \n');  
 fprintf(' >>> eventually, to avoid running gcmfaces_init over again \n');  
 fprintf('  you may want to copy the gcmfaces_path.m code to your startup.m \n\n\n');  
5    
6    warning('off','MATLAB:HandleGraphics:noJVM');
7    
8    if myenv.verbose;
9      fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');
10      fprintf(' starting basic test : plot_std_field ... \n');
11    end;
12    plot_std_field('v4');
13    
14    if ~myenv.lessplot;
15      if myenv.verbose;
16        fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');
17        fprintf(' starting plot test: plot_one_field ... \n');
18      end;
19      plot_one_field('v4',0);
20    end;
21    
22    if ~myenv.lesstest;
23      if myenv.verbose;
24        fprintf('\n\n\n***********message from gcmfaces_init.m************\n ');
25        fprintf(' starting computations test: basic_diags_compute_v3_or_v4 ... \n');
26      end;
27      basic_diags_compute_v3_or_v4('v4');
28      if ~myenv.lessplot; basic_diags_display_v3_or_v4('v4'); end;
29    end;
30    
31    if myenv.verbose;
32      fprintf('\n\n\n***********message from gcmfaces_init.m************\n');
33      fprintf(' --- initialization of gcmfaces completed correctly \n');
34      fprintf(' --- you are all set and may now use the gcmfaces package \n');
35      fprintf(' --- eventually, to avoid running gcmfaces_init over again \n');
36      fprintf(' --- you may want to copy the gcmfaces_path.m code to your startup.m \n\n\n');
37    end;
38    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.22