source:
issm/oecreview/Archive/21724-22754/ISSM-22712-22713.diff@
22755
Last change on this file since 22755 was 22755, checked in by , 7 years ago | |
---|---|
File size: 1.8 KB |
-
../trunk-jpl/test/NightlyRun/test4002.m
2 2 %ISSM/MITgcm coupled set-up 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 9 9 mkdir Models … … 42 42 MITgcmDeltaT=600; % MITgcm time step in seconds 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 51 51 hmax=1000; … … 845 845 loaddata(org,'ParameterizeIce'); 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 852 851 % rename previous run directory and create new one … … 987 986 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']; 993 994 md.masstransport.requested_outputs={'default','BasalforcingsFloatingiceMeltingRate'};
Note:
See TracBrowser
for help on using the repository browser.