Changeset 19308


Ignore:
Timestamp:
04/23/15 14:48:36 (10 years ago)
Author:
schlegel
Message:

CHG: set s0p and s0t in tests

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

Legend:

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

    r19243 r19308  
    4141
    4242md.initialization.temperature=md.surfaceforcings.temperatures_lgm(1:md.mesh.numberofvertices,1); %*ones(md.mesh.numberofvertices,1);
     43md.surfaceforcings = initialize(md.surfaceforcings,md);
    4344
    4445% creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test236.py

    r19253 r19308  
    4646
    4747md.initialization.temperature=md.surfaceforcings.temperatures_lgm[0:md.mesh.numberofvertices,0]    #*ones(md.mesh.numberofvertices,1)
     48md.surfaceforcings.initialize(md)
    4849
    4950# creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test237.m

    r19270 r19308  
    3434
    3535md.initialization.temperature=md.surfaceforcings.temperatures_lgm(1:md.mesh.numberofvertices,1); %*ones(md.mesh.numberofvertices,1);
     36md.surfaceforcings = initialize(md.surfaceforcings,md);
    3637
    3738% creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test237.py

    r19278 r19308  
    4444
    4545md.initialization.temperature=md.surfaceforcings.temperatures_lgm[0:md.mesh.numberofvertices,0].reshape(-1,1)   #*ones(md.mesh.numberofvertices,1)
     46md.surfaceforcings.initialize(md)
    4647
    4748# creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test238.m

    r19247 r19308  
    3737    md.surfaceforcings.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);
    3838end
     39md.surfaceforcings = initialize(md.surfaceforcings,md);
    3940
    4041% time steps and resolution
  • issm/trunk-jpl/test/NightlyRun/test238.py

    r19280 r19308  
    3636md.thermal.spctemperature=md.thermal.spctemperature-10
    3737md.initialization.temperature=md.thermal.spctemperature
     38md.surfaceforcings.initialize(md)
    3839
    3940# creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test239.m

    r19243 r19308  
    3838    md.surfaceforcings.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);
    3939end
     40md.surfaceforcings = initialize(md.surfaceforcings,md);
    4041
    4142% time steps and resolution
  • issm/trunk-jpl/test/NightlyRun/test239.py

    r19280 r19308  
    3636md.thermal.spctemperature=md.thermal.spctemperature-10
    3737md.initialization.temperature=md.thermal.spctemperature
     38md.surfaceforcings.initialize(md)
    3839
    3940# creating precipitation
  • issm/trunk-jpl/test/NightlyRun/test240.m

    r19273 r19308  
    2525    md.surfaceforcings.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);
    2626end
     27md.surfaceforcings = initialize(md.surfaceforcings,md);
    2728
    2829% creating initialization and spc temperatures initialization and
    2930% spc
    3031md.thermal.spctemperature=mean(md.surfaceforcings.temperatures_presentday(1:md.mesh.numberofvertices,1:12),2)-10; %-10*ones(md.mesh.numberofvertices,1);
    31 
    3232md.initialization.temperature=md.thermal.spctemperature; %md.surfaceforcings.temperatures_presentday(1:md.mesh.numberofvertices,1);
    3333
  • issm/trunk-jpl/test/NightlyRun/test240.py

    r19280 r19308  
    3636md.thermal.spctemperature=md.thermal.spctemperature-10
    3737md.initialization.temperature=md.thermal.spctemperature
     38md.surfaceforcings.initialize(md)
    3839
    3940# creating precipitation
Note: See TracChangeset for help on using the changeset viewer.