Changeset 18724
- Timestamp:
- 10/31/14 14:39:50 (10 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/classes/SMBpdd.m ¶
r18717 r18724 8 8 precipitation = NaN; 9 9 monthlytemperatures = NaN; 10 desfac = 0 .5;10 desfac = 0; 11 11 s0p = 0; 12 12 s0t = 0; 13 rlaps = 6.5;14 rlapslgm = 6.5;15 16 17 13 rlaps = 0; 14 rlapslgm = 0; 15 Pfac = NaN; 16 Tdiff = NaN; 17 sealev = NaN; 18 18 isdelta18o = 0; 19 19 delta18o = NaN; … … 68 68 md = checkfield(md,'fieldname','surfaceforcings.rlaps','>=',0,'numel',1); 69 69 md = checkfield(md,'fieldname','surfaceforcings.rlapslgm','>=',0,'numel',1); 70 md = checkfield(md,'fieldname','surfaceforcings.Pfac','NaN',1);71 md = checkfield(md,'fieldname','surfaceforcings.Tdiff','NaN',1);72 md = checkfield(md,'fieldname','surfaceforcings.sealev','NaN',1);70 md = checkfield(md,'fieldname','surfaceforcings.Pfac','NaN',1,'size',[2,NaN]); 71 md = checkfield(md,'fieldname','surfaceforcings.Tdiff','NaN',1,'size',[2,NaN]); 72 md = checkfield(md,'fieldname','surfaceforcings.sealev','NaN',1,'size',[2,NaN]); 73 73 if(obj.isdelta18o==0) 74 74 md = checkfield(md,'fieldname','surfaceforcings.monthlytemperatures','forcing',1,'NaN',1); -
TabularUnified issm/trunk-jpl/test/NightlyRun/test236.m ¶
r17555 r18724 44 44 md.timestepping.final_time=60; 45 45 46 md.surfaceforcings.Pfac=[1;1]; 47 md.surfaceforcings.Tdiff=[1;1]; 48 md.surfaceforcings.sealev=[1;1]; 49 46 50 % 47 51 md.transient.requested_outputs={'default','SurfaceforcingsMonthlytemperatures'}; -
TabularUnified issm/trunk-jpl/test/NightlyRun/test237.m ¶
r18068 r18724 40 40 md.surfaceforcings.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12); 41 41 end 42 43 md.surfaceforcings.Pfac=[1;1]; 44 md.surfaceforcings.Tdiff=[1;1]; 45 md.surfaceforcings.sealev=[1;1]; 42 46 43 47 % time steps and resolution
Note:
See TracChangeset
for help on using the changeset viewer.