Changeset 22713


Ignore:
Timestamp:
04/26/18 05:02:48 (7 years ago)
Author:
dmenemen
Message:

setting async_step_MITgcm_multiplier=1
and shortening the length of the experiments so that both
offline and online versions can run the same experiment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test4002.m

    r22693 r22713  
    33%
    44%Script control parameters
    5 steps=[1 2 3 4 5 6 7 8 9 10 11];
    6 final_time=1;
     5steps=[1 2 3 4 5 6 7 8 9 10 11 12];
     6final_time=1/365;
    77
    88%Organizer
     
    4343        y2s=31536000; % year to seconds conversion, i.e., seconds per year
    4444
    45         % start_time, final_time, and time_step
     45        % start_time and time_step
    4646        start_time=0; % in decimal years
    47         time_step=1/12; % coupling interval in decimal years
    48         async_step_MITgcm_multiplier=1/30; % used to reduce run time for MItgcm
     47        time_step=1/(365*24); % coupling interval in decimal years
     48        async_step_MITgcm_multiplier=1; % used to reduce run time for MItgcm
    4949
    5050        % bedrock/bathymetry
     
    846846        loaddata(org,'Bathymetry');
    847847        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));
    850849
    851850        % {{{ prepare MITgcm
     
    988987        md.transient.isoceancoupling=1;
    989988        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;
    991992        md.cluster.npocean=nPx*nPy;
    992993        md.cluster.executionpath=[pwd '/run'];
Note: See TracChangeset for help on using the changeset viewer.