/[MITgcm]/MITgcm_contrib/timour_matlab/mscripts/tevolution2.m
ViewVC logotype

Annotation of /MITgcm_contrib/timour_matlab/mscripts/tevolution2.m

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


Revision 1.1 - (hide annotations) (download)
Wed Sep 3 21:22:22 2003 UTC (21 years, 10 months ago) by edhill
Branch: MAIN
CVS Tags: HEAD
initial checkin of Timour's MatLAB scripts

1 edhill 1.1 clear
2     clear path
3    
4     global Nx Ny Nz
5     global lat long dz dm mdep
6     global delt_su su_its t_su delt
7     global descriptor this_path
8     global f deltaf Q beta r_expt r_heat H
9     global time rots it
10     global g Cp rho_bar alpha
11     global u v t w
12     global iterations
13    
14    
15     param_file_name = ...
16     input(' Please enter the name of the m-file with the parameters for this run : ','s') ;
17     feval(param_file_name) ;
18     path = this_path
19     cmdstr=['cd ' path ];
20     eval(cmdstr);
21     path=pwd
22    
23     figure;hold on
24     %set(gca,'XLim',[10000 35000])
25     %set(gca,'YLim',[20 35])
26     sizeit=size(iterations);
27     centraltheta=zeros(sizeit(1),Nz);
28    
29     for i=1:sizeit(1)
30     tfilename=(['T.' iterations((i),1:10) ]);
31     t=rdmeta(tfilename,'b');
32    
33    
34     tval(i,:)=t(8,Ny/2,:)-20;
35     centralt=tval;
36     plot(eval(iterations((i),1:10)),centralt(i,:),'.');drawnow
37     tincol(i)=sum((centralt(i,:)).*dz);
38     time(i)=(eval(iterations(i,1:10))-su_its)*delt;
39    
40    
41     end
42     tcol=tval;
43     title(descriptor)
44     xlabel('timestep')
45     ylabel('central temperature')
46     grid
47    
48     computertime=time;
49    
50     %save centralt centralt
51     %save iterations iterations
52     %save tcol tcol
53     %save tincol tincol
54     %save mdep mdep
55     save computer2 tcol tincol mdep computertime

  ViewVC Help
Powered by ViewVC 1.1.22