Changeset 19280


Ignore:
Timestamp:
04/09/15 15:16:41 (10 years ago)
Author:
schlegel
Message:

CHG: fix the timestepping to match matlab tests

Location:
issm/trunk-jpl/test/NightlyRun
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test238.py

    r19266 r19280  
    4141for imonth in xrange(0,12):
    4242    md.surfaceforcings.precipitations_presentday[0:md.mesh.numberofvertices,imonth]=-0.4*10**(-6)*md.mesh.y+0.5
    43     md.surfaceforcings.precipitations_presentday[md.mesh.numberofvertices,imonth]=((float(imonth)+1.)/12.)
     43    md.surfaceforcings.precipitations_presentday[md.mesh.numberofvertices,imonth]=(float(imonth)/12.)
    4444
    4545# time steps and resolution
    46 md.timestepping.time_step=0.5
    47 md.timestepping.final_time=2.
     46md.timestepping.time_step=20;
     47md.settings.output_frequency=1;
     48md.timestepping.final_time=60;
    4849
    4950#
  • issm/trunk-jpl/test/NightlyRun/test239.py

    r19266 r19280  
    3030    md.surfaceforcings.temperatures_presentday[0:md.mesh.numberofvertices,imonth]=tmonth[imonth]
    3131    # Time for the last line:
    32     md.surfaceforcings.temperatures_presentday[md.mesh.numberofvertices,imonth]=((float(imonth)+1.)/12.)
     32    md.surfaceforcings.temperatures_presentday[md.mesh.numberofvertices,imonth]=(float(imonth)/12.)
    3333
    3434# creating initialization and spc temperatures initialization and spc
     
    4444
    4545# time steps and resolution
    46 md.timestepping.time_step=0.5
    47 md.timestepping.final_time=2.
    48 md.timestepping.interp_forcings=0
     46md.timestepping.time_step=0.5;
     47md.settings.output_frequency=1;
     48md.timestepping.final_time=2;
    4949
    5050#
  • issm/trunk-jpl/test/NightlyRun/test240.py

    r19266 r19280  
    3030    md.surfaceforcings.temperatures_presentday[0:md.mesh.numberofvertices,imonth]=tmonth[imonth]
    3131    # Time for the last line:
    32     md.surfaceforcings.temperatures_presentday[md.mesh.numberofvertices,imonth]=((float(imonth)+1.)/12.)
     32    md.surfaceforcings.temperatures_presentday[md.mesh.numberofvertices,imonth]=(float(imonth)/12.)
    3333
    3434# creating initialization and spc temperatures initialization and spc
     
    4444
    4545# time steps and resolution
    46 md.timestepping.time_step=20.
    47 md.timestepping.final_time=60.
     46md.timestepping.time_step=0.5;
     47md.settings.output_frequency=1;
     48md.timestepping.final_time=2;
     49md.timestepping.interp_forcings=0;
    4850
    4951#
Note: See TracChangeset for help on using the changeset viewer.