Changeset 23074 for issm/trunk-jpl/test/NightlyRun/test4002.m
- Timestamp:
- 08/07/18 20:02:12 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test4002.m
r23068 r23074 4 4 %Script control parameters 5 5 steps=[1 2 3 4 5 6 7 8 9 10 11 12]; 6 steps=[1 2 3 4 5]; 6 7 final_time=1/365; 7 8 … … 136 137 137 138 %specify computational grid in SIZE.h 138 fidi=fopen('../MITgcm/code/SIZE.h.bak','r'); 139 fido=fopen('../MITgcm/code/SIZE.h','w'); 140 tline = fgetl(fidi); 141 fprintf(fido,'%s\n',tline); 142 while 1 139 if ~exist('../MITgcm/code/SIZE.h') 140 fidi=fopen('../MITgcm/code/SIZE.h.bak','r'); 141 fido=fopen('../MITgcm/code/SIZE.h','w'); 143 142 tline = fgetl(fidi); 144 if ~ischar(tline), break, end145 %do the change here:146 if strcmpi(tline,' & sNx = 20,'),147 fprintf(fido,'%s%i%s\n',' & sNx = ',round(Nx/nPx),',');148 continue;149 end150 if strcmpi(tline,' & sNy = 20,'),151 fprintf(fido,'%s%i%s\n',' & sNy = ',round(Ny/nPy),',');152 continue;153 end154 if strcmpi(tline,' & nPx = 1,'),155 fprintf(fido,'%s%i%s\n',' & nPx = ',nPx,',');156 continue;157 end158 if strcmpi(tline,' & nPy = 2,'),159 fprintf(fido,'%s%i%s\n',' & nPy = ',nPy,',');160 continue;161 end162 143 fprintf(fido,'%s\n',tline); 144 while 1 145 tline = fgetl(fidi); 146 if ~ischar(tline), break, end 147 %do the change here: 148 if strcmpi(tline,' & sNx = 20,'), 149 fprintf(fido,'%s%i%s\n',' & sNx = ',round(Nx/nPx),','); 150 continue; 151 end 152 if strcmpi(tline,' & sNy = 20,'), 153 fprintf(fido,'%s%i%s\n',' & sNy = ',round(Ny/nPy),','); 154 continue; 155 end 156 if strcmpi(tline,' & nPx = 1,'), 157 fprintf(fido,'%s%i%s\n',' & nPx = ',nPx,','); 158 continue; 159 end 160 if strcmpi(tline,' & nPy = 2,'), 161 fprintf(fido,'%s%i%s\n',' & nPy = ',nPy,','); 162 continue; 163 end 164 fprintf(fido,'%s\n',tline); 165 end 166 %close files 167 fclose(fidi); 168 fclose(fido); 163 169 end 164 %close files 165 fclose(fidi); 166 fclose(fido); 167 168 system(['../MITgcm/build.sh generic ' pwd '/../MITgcm']); 170 171 system(['../MITgcm/build.sh generic ' pwd '/../MITgcm']); 169 172 end 170 173 % }}}
Note:
See TracChangeset
for help on using the changeset viewer.