Changeset 22713
- Timestamp:
- 04/26/18 05:02:48 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test4002.m
r22693 r22713 3 3 % 4 4 %Script control parameters 5 steps=[1 2 3 4 5 6 7 8 9 10 11 ];6 final_time=1 ;5 steps=[1 2 3 4 5 6 7 8 9 10 11 12]; 6 final_time=1/365; 7 7 8 8 %Organizer … … 43 43 y2s=31536000; % year to seconds conversion, i.e., seconds per year 44 44 45 % start_time , final_time,and time_step45 % start_time and time_step 46 46 start_time=0; % in decimal years 47 time_step=1/ 12; % coupling interval in decimal years48 async_step_MITgcm_multiplier=1 /30; % used to reduce run time for MItgcm47 time_step=1/(365*24); % coupling interval in decimal years 48 async_step_MITgcm_multiplier=1; % used to reduce run time for MItgcm 49 49 50 50 % bedrock/bathymetry … … 846 846 loaddata(org,'Bathymetry'); 847 847 loaddata(org,'IceSheetGeometry'); 848 endtime = round(MITgcmDeltaT * ... 849 floor(time_step*y2s*async_step_MITgcm_multiplier/MITgcmDeltaT)); 848 endtime = round(MITgcmDeltaT * floor(final_time*y2s/MITgcmDeltaT)); 850 849 851 850 % {{{ prepare MITgcm … … 988 987 md.transient.isoceancoupling=1; 989 988 md.transient.isgroundingline=1; 990 md.timestepping.coupling_time=1/12; 989 md.timestepping.coupling_time=time_step; 990 md.timestepping.time_step=time_step; 991 md.timestepping.final_time=final_time; 991 992 md.cluster.npocean=nPx*nPy; 992 993 md.cluster.executionpath=[pwd '/run'];
Note:
See TracChangeset
for help on using the changeset viewer.