source: trunk/src/mode_sahelien/composite_hgt700_EOF24_1030.m @ 15

Last change on this file since 15 was 15, checked in by pinsard, 16 years ago

modification according to mlint diagnostic

File size: 14.5 KB
Line 
1% initialisation
2clear; close all;
3
4
5% etape 1 :on selectionne les mois d ete (attention aux annees bixestiles!)
6%          on compile sous forme d'un seul fichier
7
8hgt700=zeros(122,49,144,28);
9
10siz=31+28+31+30+31+1; sizbis=31+28+31+30+31+30+31+31+30;
11ncload('hgt700.1979.nc'); hgt700(:,:,:,1)=hgt(siz:sizbis,1,:,:); clear hgt;
12ncload('hgt700.1980.nc'); hgt700(:,:,:,2)=hgt(siz+1:sizbis+1,1,:,:); clear hgt;
13ncload('hgt700.1981.nc'); hgt700(:,:,:,3)=hgt(siz:sizbis,1,:,:);clear hgt;
14ncload('hgt700.1982.nc'); hgt700(:,:,:,4)=hgt(siz:sizbis,1,:,:);clear hgt;
15ncload('hgt700.1983.nc'); hgt700(:,:,:,5)=hgt(siz:sizbis,1,:,:);clear hgt;
16ncload('hgt700.1984.nc'); hgt700(:,:,:,6)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
17ncload('hgt700.1985.nc'); hgt700(:,:,:,7)=hgt(siz:sizbis,1,:,:);clear hgt;
18ncload('hgt700.1986.nc'); hgt700(:,:,:,8)=hgt(siz:sizbis,1,:,:);clear hgt;
19ncload('hgt700.1987.nc'); hgt700(:,:,:,9)=hgt(siz:sizbis,1,:,:);clear hgt;
20ncload('hgt700.1988.nc'); hgt700(:,:,:,10)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
21ncload('hgt700.1989.nc'); hgt700(:,:,:,11)=hgt(siz:sizbis,1,:,:);clear hgt;
22ncload('hgt700.1990.nc'); hgt700(:,:,:,12)=hgt(siz:sizbis,1,:,:);clear hgt;
23ncload('hgt700.1991.nc'); hgt700(:,:,:,13)=hgt(siz:sizbis,1,:,:);clear hgt;
24ncload('hgt700.1992.nc'); hgt700(:,:,:,14)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
25ncload('hgt700.1993.nc'); hgt700(:,:,:,15)=hgt(siz:sizbis,1,:,:);clear hgt;
26ncload('hgt700.1994.nc'); hgt700(:,:,:,16)=hgt(siz:sizbis,1,:,:);clear hgt;
27ncload('hgt700.1995.nc'); hgt700(:,:,:,17)=hgt(siz:sizbis,1,:,:);clear hgt;
28ncload('hgt700.1996.nc'); hgt700(:,:,:,18)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
29ncload('hgt700.1997.nc'); hgt700(:,:,:,19)=hgt(siz:sizbis,1,:,:);clear hgt;
30ncload('hgt700.1998.nc'); hgt700(:,:,:,20)=hgt(siz:sizbis,1,:,:);clear hgt;
31ncload('hgt700.1999.nc'); hgt700(:,:,:,21)=hgt(siz:sizbis,1,:,:);clear hgt;
32ncload('hgt700.2000.nc'); hgt700(:,:,:,22)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
33ncload('hgt700.2001.nc'); hgt700(:,:,:,23)=hgt(siz:sizbis,1,:,:);clear hgt;
34ncload('hgt700.2002.nc'); hgt700(:,:,:,24)=hgt(siz:sizbis,1,:,:);clear hgt;
35ncload('hgt700.2003.nc'); hgt700(:,:,:,25)=hgt(siz:sizbis,1,:,:);clear hgt;
36ncload('hgt700.2004.nc'); hgt700(:,:,:,26)=hgt(siz+1:sizbis+1,1,:,:);clear hgt;
37ncload('hgt700.2005.nc'); hgt700(:,:,:,27)=hgt(siz:sizbis,1,:,:);clear hgt;
38ncload('hgt700.2006.nc'); hgt700(:,:,:,28)=hgt(siz:sizbis,1,:,:);clear hgt;
39
40
41clear siz1 siz1bis;
42
43hgt=permute(hgt700,[1 4 2 3]);
44clear hgt700;
45
46
47%%%%%%%%%%%%%%% FICHIER OLR
48% ouverture / lecture du fichier
49load eof24_1030.txt
50ind_olr=reshape(eof24_1030,122,28);
51k=122*28;
52clear eof24_1030;
53% on calcule l ecart type sur la serie entiere de l OLR
54ind_olr1=reshape(ind_olr, k,1);
55ind_olr2=std(ind_olr1); clear ind_olr1;
56
57%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58% GEOPOTENTIEL
59% intialisation des tableaux
60hgt700_filtre_compomax=NaN*ones(60,31,49,144);
61hgt700_filtre_compomin=NaN*ones(60,31,49,144);
62
63compteurmax=0;
64compteurmin=0;
65
66for a=1:28; % boucle sur les annees
67   clear delta;
68   delta=zeros(122,1);
69   for b=1:122; % boucle sur les jours : on prepare avant   
70        if b>1;
71            delta(b)=ind_olr(b,a)-ind_olr(b-1,a);
72        end;
73   end;
74   for b=1:122; % boucle sur les jours
75      if (b>20 && b<112); % 1ere condition (laisser une marge de 10)
76% cas 1 : max deltas apres negetifs et deltas avant postifs   
77         if (delta(b+1)<0 && delta(b)<0 && delta(b-1)>0 && delta(b-2)>0 && ind_olr(b,a)>ind_olr2);
78            compteurmax=compteurmax+1;
79            hgt700_filtre_compomax(compteurmax,1,:,:)=hgt(b-20,a,:,:);
80            hgt700_filtre_compomax(compteurmax,2,:,:)=hgt(b-19,a,:,:);
81            hgt700_filtre_compomax(compteurmax,3,:,:)=hgt(b-18,a,:,:);
82            hgt700_filtre_compomax(compteurmax,4,:,:)=hgt(b-17,a,:,:);
83            hgt700_filtre_compomax(compteurmax,5,:,:)=hgt(b-16,a,:,:);
84            hgt700_filtre_compomax(compteurmax,6,:,:)=hgt(b-15,a,:,:);
85            hgt700_filtre_compomax(compteurmax,7,:,:)=hgt(b-14,a,:,:);
86            hgt700_filtre_compomax(compteurmax,8,:,:)=hgt(b-13,a,:,:);
87            hgt700_filtre_compomax(compteurmax,9,:,:)=hgt(b-12,a,:,:);
88            hgt700_filtre_compomax(compteurmax,10,:,:)=hgt(b-11,a,:,:);
89
90            hgt700_filtre_compomax(compteurmax,11,:,:)=hgt(b-10,a,:,:);
91            hgt700_filtre_compomax(compteurmax,12,:,:)=hgt(b-9,a,:,:);
92            hgt700_filtre_compomax(compteurmax,13,:,:)=hgt(b-8,a,:,:);
93            hgt700_filtre_compomax(compteurmax,14,:,:)=hgt(b-7,a,:,:);
94            hgt700_filtre_compomax(compteurmax,15,:,:)=hgt(b-6,a,:,:);
95            hgt700_filtre_compomax(compteurmax,16,:,:)=hgt(b-5,a,:,:);
96            hgt700_filtre_compomax(compteurmax,17,:,:)=hgt(b-4,a,:,:);
97            hgt700_filtre_compomax(compteurmax,18,:,:)=hgt(b-3,a,:,:);
98            hgt700_filtre_compomax(compteurmax,19,:,:)=hgt(b-2,a,:,:);
99            hgt700_filtre_compomax(compteurmax,20,:,:)=hgt(b-1,a,:,:);
100
101            hgt700_filtre_compomax(compteurmax,21,:,:)=hgt(b,a,:,:);
102            hgt700_filtre_compomax(compteurmax,22,:,:)=hgt(b+1,a,:,:);
103            hgt700_filtre_compomax(compteurmax,23,:,:)=hgt(b+2,a,:,:);
104            hgt700_filtre_compomax(compteurmax,24,:,:)=hgt(b+3,a,:,:);
105            hgt700_filtre_compomax(compteurmax,25,:,:)=hgt(b+4,a,:,:);
106            hgt700_filtre_compomax(compteurmax,26,:,:)=hgt(b+5,a,:,:);
107            hgt700_filtre_compomax(compteurmax,27,:,:)=hgt(b+6,a,:,:);
108            hgt700_filtre_compomax(compteurmax,28,:,:)=hgt(b+7,a,:,:);
109            hgt700_filtre_compomax(compteurmax,29,:,:)=hgt(b+8,a,:,:);
110            hgt700_filtre_compomax(compteurmax,30,:,:)=hgt(b+9,a,:,:);
111            hgt700_filtre_compomax(compteurmax,31,:,:)=hgt(b+10,a,:,:);
112% cas 2 : min deltas apres positifs et deltas avant negatifs   
113         elseif (delta(b+1)>0 && delta(b)>0 && delta(b-1)<0 && delta(b-2)<0 && ind_olr(b,a)<(-ind_olr2));
114            compteurmin=compteurmin+1;
115
116            hgt700_filtre_compomin(compteurmin,1,:,:)=hgt(b-20,a,:,:);
117            hgt700_filtre_compomin(compteurmin,2,:,:)=hgt(b-19,a,:,:);
118            hgt700_filtre_compomin(compteurmin,3,:,:)=hgt(b-18,a,:,:);
119            hgt700_filtre_compomin(compteurmin,4,:,:)=hgt(b-17,a,:,:);
120            hgt700_filtre_compomin(compteurmin,5,:,:)=hgt(b-16,a,:,:);
121            hgt700_filtre_compomin(compteurmin,6,:,:)=hgt(b-15,a,:,:);
122            hgt700_filtre_compomin(compteurmin,7,:,:)=hgt(b-14,a,:,:);
123            hgt700_filtre_compomin(compteurmin,8,:,:)=hgt(b-13,a,:,:);
124            hgt700_filtre_compomin(compteurmin,9,:,:)=hgt(b-12,a,:,:);
125            hgt700_filtre_compomin(compteurmin,10,:,:)=hgt(b-11,a,:,:);
126
127            hgt700_filtre_compomin(compteurmin,11,:,:)=hgt(b-10,a,:,:);
128            hgt700_filtre_compomin(compteurmin,12,:,:)=hgt(b-9,a,:,:);
129            hgt700_filtre_compomin(compteurmin,13,:,:)=hgt(b-8,a,:,:);
130            hgt700_filtre_compomin(compteurmin,14,:,:)=hgt(b-7,a,:,:);
131            hgt700_filtre_compomin(compteurmin,15,:,:)=hgt(b-6,a,:,:);
132            hgt700_filtre_compomin(compteurmin,16,:,:)=hgt(b-5,a,:,:);
133            hgt700_filtre_compomin(compteurmin,17,:,:)=hgt(b-4,a,:,:);
134            hgt700_filtre_compomin(compteurmin,18,:,:)=hgt(b-3,a,:,:);
135            hgt700_filtre_compomin(compteurmin,19,:,:)=hgt(b-2,a,:,:);
136            hgt700_filtre_compomin(compteurmin,20,:,:)=hgt(b-1,a,:,:);
137
138            hgt700_filtre_compomin(compteurmin,21,:,:)=hgt(b,a,:,:);
139            hgt700_filtre_compomin(compteurmin,22,:,:)=hgt(b+1,a,:,:);
140            hgt700_filtre_compomin(compteurmin,23,:,:)=hgt(b+2,a,:,:);
141            hgt700_filtre_compomin(compteurmin,24,:,:)=hgt(b+3,a,:,:);
142            hgt700_filtre_compomin(compteurmin,25,:,:)=hgt(b+4,a,:,:);
143            hgt700_filtre_compomin(compteurmin,26,:,:)=hgt(b+5,a,:,:);
144            hgt700_filtre_compomin(compteurmin,27,:,:)=hgt(b+6,a,:,:);
145            hgt700_filtre_compomin(compteurmin,28,:,:)=hgt(b+7,a,:,:);
146            hgt700_filtre_compomin(compteurmin,29,:,:)=hgt(b+8,a,:,:);
147            hgt700_filtre_compomin(compteurmin,30,:,:)=hgt(b+9,a,:,:);
148            hgt700_filtre_compomin(compteurmin,31,:,:)=hgt(b+10,a,:,:);
149         end;
150      end;
151   end;         
152end;
153
154
155% on fait la somme des valeurs de hgt700_filtreentiel sur le nbre d occurences
156% on obtent un tableau de la forme (jours-avant-apres,lon,lat)
157hgt700_filtre_compomin1(:,:,:)=nanmean(hgt700_filtre_compomin); clear hgt700_filtre_compomin;
158hgt700_filtre_compomax1(:,:,:)=nanmean(hgt700_filtre_compomax); clear hgt700_filtre_compomax;
159
160x=[-10:1:10]'; %'
161
162figure(1);
163orient('landscape');
164lat=lat';
165pression=zeros(14,49,144);
166
167for e=1:7;
168       a=7-(e-1)+1;
169       f=2*(a-1)+1;
170       clear delta_hgt700_filtre_min;
171       delta_hgt700_filtre_min=zeros(49,144);
172       for b=1:49;
173          for c=1:144;
174             delta_hgt700_filtre_min(b,c)=hgt700_filtre_compomin1(f,b,c)-hgt700_filtre_compomax1(f,b,c);
175          end;
176       end;
177       for b=1:49;
178          for c=1:144;
179             if delta_hgt700_filtre_min(b,c)<-20;
180                  delta_hgt700_filtre_min(b,c)=-20;
181             elseif delta_hgt700_filtre_min(b,c)>20;
182                  delta_hgt700_filtre_min(b,c)=20;
183             end;
184          end;
185       end
186       subplot(7,1,8-e);
187       palette
188       clear delta_hgt700;
189       delta_hgt700_filtre_min(1,1)=-20.001;
190       delta_hgt700_filtre_min(1,2)=20.001;
191       delta_hgt700=zeros(49,144);
192       delta_hgt700(:,1:72)=delta_hgt700_filtre_min(:,73:144);
193       delta_hgt700(:,73:144)=delta_hgt700_filtre_min(:,1:72);
194       pression(8-e,:,:)=delta_hgt700;
195       aa=contourf(lon-180,lat,delta_hgt700,[-20:2:20],'LineStyle','none');
196       delta_hgt700=flipud(delta_hgt700);
197      if e==1;
198            sauvegrads('composite_hgt700_mode_sahel_1030_moins6',delta_hgt700,[-180 2.5 -10 2.5]);
199       elseif e==2;
200            sauvegrads('composite_hgt700_mode_sahel_1030_moins8',delta_hgt700,[-180 2.5 -10 2.5]);
201       elseif e==3;
202            sauvegrads('composite_hgt700_mode_sahel_1030_moins10',delta_hgt700,[-180 2.5 -10 2.5]);
203       elseif e==4;
204            sauvegrads('composite_hgt700_mode_sahel_1030_moins12',delta_hgt700,[-180 2.5 -10 2.5]);
205       elseif e==5;
206            sauvegrads('composite_hgt700_mode_sahel_1030_moins14',delta_hgt700,[-180 2.5 -10 2.5]);
207       elseif e==6;
208            sauvegrads('composite_hgt700_mode_sahel_1030_moins16',delta_hgt700,[-180 2.5 -10 2.5]);
209       else
210            sauvegrads('composite_hgt700_mode_sahel_1030_moins18',delta_hgt700,[-180 2.5 -10 2.5]);
211       end
212delta_hgt700=flipud(delta_hgt700);
213
214        if e==1;
215         set (gca,'XTick',[-180:60:180],'XTickLabel',[' 180';'120W';' 60W';'   0';' 60E';'120E';' 180'],'fontname','Arial','fontsize',6);
216       else
217         set (gca,'XTick',[-180:60:180],'XTickLabel',[' ';' ';' ';' ';' ';' '],'fontname','Arial','fontsize',6);
218       end;       
219       set (gca,'YTick',[-10:10:30],'YTickLabel',['10S';' 0 ';'10N';'20N';'30N'],'fontname','Arial','fontsize',6);
220       if e==4;
221          co=colorbar;           
222          set (co,'ytick',[-20:5:20],'yticklabel',[-20:5:20],'fontname','Arial','fontsize',6);
223       end;
224       hold on; cartemonde1;
225       set (gca,'tickDir','out');
226       axis equal;
227       axis([-180 180 -20 40]);
228       if e==7;
229           title('OLR composite EOF234 1030j ITCZ 7.5-12.5','fontsize',8);
230       end;
231       text(-270,10,['day = ',num2str(f-21)],'fontname','Arial','fontsize',10);
232       pos_vert=e/10;
233       set (gca,'position',[0.2 pos_vert 0.5 0.1]);
234end;
235
236print -depsc2 composite_hgt700_EOF234_1030_part1.eps;
237
238figure(2);
239orient('landscape');
240
241for e=1:7;
242       a=7-(e-1)+1+7;
243       f=2*(a-1)+1;
244       clear delta_hgt700_filtre_min;
245       delta_hgt700_filtre_min=zeros(49,144);
246       for b=1:49;
247          for c=1:144;
248             delta_hgt700_filtre_min(b,c)=hgt700_filtre_compomin1(f,b,c)-hgt700_filtre_compomax1(f,b,c);
249          end;
250       end;
251       for b=1:49;
252          for c=1:144;
253             if delta_hgt700_filtre_min(b,c)<-20;
254                  delta_hgt700_filtre_min(b,c)=-20;
255             elseif delta_hgt700_filtre_min(b,c)>20;
256                  delta_hgt700_filtre_min(b,c)=20;
257             end;
258          end;
259       end
260       subplot(7,1,8-e);
261       palette;
262       clear delta_hgt700;
263       delta_hgt700_filtre_min(1,1)=-20.001;
264       delta_hgt700_filtre_min(1,2)=20.001;
265       delta_hgt700=zeros(49,144);
266       delta_hgt700(:,1:72)=delta_hgt700_filtre_min(:,73:144);
267       delta_hgt700(:,73:144)=delta_hgt700_filtre_min(:,1:72);
268       pression(15-e,:,:)=delta_hgt700;
269       delta_hgt700=flipud(delta_hgt700);
270       if e==1;
271            sauvegrads('composite_hgt700_mode_sahel_1030_plus8',delta_hgt700,[-180 2.5 -10 2.5]);
272       elseif e==2;
273            sauvegrads('composite_hgt700_mode_sahel_1030_plus6',delta_hgt700,[-180 2.5 -10 2.5]);
274       elseif e==3;
275            sauvegrads('composite_hgt700_mode_sahel_1030_plus4',delta_hgt700,[-180 2.5 -10 2.5]);
276       elseif e==4;
277            sauvegrads('composite_hgt700_mode_sahel_1030_plus2',delta_hgt700,[-180 2.5 -10 2.5]);
278       elseif e==5;
279            sauvegrads('composite_hgt700_mode_sahel_1030_0',delta_hgt700,[-180 2.5 -10 2.5]);
280       elseif e==6;
281            sauvegrads('composite_hgt700_mode_sahel_1030_moins2',delta_hgt700,[-180 2.5 -10 2.5]);
282       else
283            sauvegrads('composite_hgt700_mode_sahel_1030_moins4',delta_hgt700,[-180 2.5 -10 2.5]);
284       end;
285delta_hgt700=flipud(delta_hgt700);
286
287
288       aa=contourf(lon-180,lat,delta_hgt700,[-20:2:20],'LineStyle','none');
289       if e==1;
290         set (gca,'XTick',[-180:60:180],'XTickLabel',[' 180';'120W';' 60W';'   0';' 60E';'120E';' 180'],'fontname','Arial','fontsize',6);
291       else
292         set (gca,'XTick',[-180:60:180],'XTickLabel',[' ';' ';' ';' ';' ';' '],'fontname','Arial','fontsize',6);
293       end;       
294       set (gca,'YTick',[-10:10:30],'YTickLabel',['10S';' 0 ';'10N';'20N';'30N'],'fontname','Arial','fontsize',6);
295       if e==4;
296          co=colorbar;           
297          set (co,'ytick',[-20:5:20],'yticklabel',[-20:5:20],'fontname','Arial','fontsize',6);
298       end;
299       hold on; cartemonde1;
300       set (gca,'tickDir','out');
301       axis equal;
302       axis([-180 180 -20 40]);
303       if e==7;
304            title('OLR composite EOF234 1030j ITCZ 7.5-12.5','fontsize',8);
305       end;
306       text(-270,10,['day = ',num2str(f-21)],'fontname','Arial','fontsize',10);
307       pos_vert=e/10;
308       set (gca,'position',[0.2 pos_vert 0.5 0.1]);
309end;
310
311print -depsc2 composite_hgt700_EOF234_1030_part2.eps;
Note: See TracBrowser for help on using the repository browser.