Changeset 19270


Ignore:
Timestamp:
04/08/15 07:45:44 (10 years ago)
Author:
lemorzad
Message:

updating PDD nightly run 237 and 240

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

Legend:

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

    r19243 r19270  
    1111md.surfaceforcings.ismungsm=1;
    1212
    13 if md.surfaceforcings.isdelta18o==0 & md.surfaceforcings.ismungsm==0
    14     md.surfaceforcings.precipitation=zeros(md.mesh.numberofvertices,1);
    15     md.surfaceforcings.monthlytemperatures=273*ones(md.mesh.numberofvertices,1);
    16 end
    17    
    18 
    19 % Add temperature, precipitation and delta18o needed to measure the surface mass balance
    20 % % creating delta18o
    21 % load '../Data/delta18o.data'
    22 % md.surfaceforcings.delta18o=delta18o;
    23 % % creating delta18oSurface
    24 % md.surfaceforcings.delta18o_surface(1,1:(length(delta18o))) = 0;
    25 % md.surfaceforcings.delta18o_surface(2,:) = delta18o(2,:);
     13% time steps and resolution
     14md.timestepping.time_step=20;
     15md.settings.output_frequency=1;
     16md.timestepping.final_time=60;
    2617
    2718% creating Present day and lgm temperatures
     
    5344end
    5445
    55 md.surfaceforcings.Pfac(1,1:md.timestepping.final_time)=0.5;
    56 md.surfaceforcings.Tdiff(1,1:md.timestepping.final_time)=0.5;
    57 md.surfaceforcings.sealev(1,1:md.timestepping.final_time)=0.5;
    58 % Year of each data point
    59 md.surfaceforcings.Pfac(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time;
    60 md.surfaceforcings.Tdiff(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time;
    61 md.surfaceforcings.sealev(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time;
    62 
    63 % time steps and resolution
    64 md.timestepping.time_step=20;
    65 md.settings.output_frequency=1;
    66 md.timestepping.final_time=60;
     46for iint=1:(md.timestepping.final_time/md.timestepping.time_step)+1
     47    md.surfaceforcings.Pfac(1,iint)=0.15*iint;
     48    md.surfaceforcings.Tdiff(1,iint)=0.15*iint;
     49    md.surfaceforcings.sealev(1,iint)=0.15*iint;
     50    % Year of each data point
     51    md.surfaceforcings.Pfac(2,iint)=(iint-1)*20;
     52    md.surfaceforcings.Tdiff(2,iint)=(iint-1)*20;
     53    md.surfaceforcings.sealev(2,iint)=(iint-1)*20;
     54end
    6755
    6856%
  • issm/trunk-jpl/test/NightlyRun/test240.m

    r19243 r19270  
    1212%md.surfaceforcings.monthlytemperatures(1:md.mesh.numberofvertices,1:12)=273;
    1313
     14% time steps and resolution
     15md.timestepping.time_step=20;
     16md.settings.output_frequency=1;
     17md.timestepping.final_time=60;
     18md.timestepping.interp_forcings=0;
     19
    1420% Add temperature, precipitation and delta18o needed to measure the surface mass balance
    1521%  creating delta18o
    1622load '../Data/delta18o.data'
    17 md.surfaceforcings.delta18o=delta18o;
     23md.surfaceforcings.delta18o=delta18o(:,1:(md.timestepping.final_time/md.timestepping.time_step)+1);
    1824
    1925% creating Present day  temperatures
     
    3945end
    4046
    41 % time steps and resolution
    42 md.timestepping.time_step=0.5;
    43 md.settings.output_frequency=1;
    44 md.timestepping.final_time=2;
    45 md.timestepping.interp_forcings=0;
    4647
    4748%
Note: See TracChangeset for help on using the changeset viewer.