Changeset 153
- Timestamp:
- 04/30/09 10:27:53 (16 years ago)
- Location:
- issm/trunk/test/Verification/IceSheetIceFrontM3d_8
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/Verification/IceSheetIceFrontM3d_8/runme.m
r151 r153 12 12 %packages and solutions to be tested 13 13 packages={'macayeal','ice','cielo_serial','cielo_parallel'}; 14 solutions={'diagnostic','thermal _steady','thermal_transient','prognostic','transient'};14 solutions={'diagnostic','thermalsteady','thermaltransient','prognostic','transient'}; 15 15 16 16 %Initialize log message for nightly runs. … … 29 29 error(['package: ' package ' in test: ' testname ' not supported yet']); 30 30 %check solution 31 elseif ~(strcmpi(solution,'diagnostic') | strcmpi(solution,'thermal _steady') | strcmpi(solution,'thermal_transient') |...31 elseif ~(strcmpi(solution,'diagnostic') | strcmpi(solution,'thermalsteady') | strcmpi(solution,'thermaltransient') |... 32 32 strcmpi(solution,'prognostic') | strcmpi(solution,'transient')); 33 33 error(['solution: ' solution ' in test: ' testname ' not supported yet']); 34 34 end 35 35 %check solution requested 36 if (~strcmpi(package,'ice') ),36 if (~strcmpi(package,'ice') | strcmpi(solution,'transient')), 37 37 disp(sprintf(['\nsolution: ' solution ', with package: ' package ', in test: ' testname ', not supported yet.\n'])); 38 38 continue … … 41 41 %initialize model 42 42 md=model; 43 md=mesh(md,'DomainOutline.exp', 50000);43 md=mesh(md,'DomainOutline.exp',100000); 44 44 md=geography(md,'',''); 45 45 md=parameterize(md,'Square.par'); 46 md=extrude(md, 10,3);46 md=extrude(md,8,4); 47 47 md=setelementstype(md,'macayeal','all'); 48 48 if strcmpi(package,'cielo_parallel'), md.cluster='wilkes'; end 49 if md.numberofgrids== 388050 load Velocities; md.vx= 1.2*vx; md.vy=1.2*vy;49 if md.numberofgrids==832 50 load Velocities; md.vx=0.8*vx; md.vy=0.8*vy; md.vz=0.8*vz; md.temperature=temperature-1; md.pressure=pressure; 51 51 end 52 52 … … 63 63 if strcmpi(solution,'diagnostic'), 64 64 fields={'vy','vz'}; 65 elseif strcmpi(solution,'thermal _steady'),65 elseif strcmpi(solution,'thermalsteady'), 66 66 fields={'temperature','melting'}; 67 elseif strcmpi(solution,'thermal _transient'),67 elseif strcmpi(solution,'thermaltransient'), 68 68 fields={'thermaltransient_results(end).temperature','thermaltransient_results(end).melting'}; 69 69 elseif strcmpi(solution,'prognostic'), -
issm/trunk/test/Verification/IceSheetIceFrontM3d_8/updatearchive.m
r151 r153 8 8 %packages and solutions to be tested 9 9 packages={'macayeal','ice','cielo_serial','cielo_parallel'}; 10 solutions={'diagnostic','thermal _steady','thermal_transient','prognostic','transient'};10 solutions={'diagnostic','thermalsteady','thermaltransient','prognostic','transient'}; 11 11 12 12 %go through the solutions requested … … 22 22 error(['package: ' package ' in test: ' testname ' not supported yet']); 23 23 %check solution 24 elseif ~(strcmpi(solution,'diagnostic') | strcmpi(solution,'thermal _steady') | strcmpi(solution,'thermal_transient') |...24 elseif ~(strcmpi(solution,'diagnostic') | strcmpi(solution,'thermalsteady') | strcmpi(solution,'thermaltransient') |... 25 25 strcmpi(solution,'prognostic') | strcmpi(solution,'transient')); 26 26 error(['solution: ' solution ' in test: ' testname ' not supported yet']); 27 27 end 28 28 %check solution requested 29 if (~strcmpi(package,'ice') ),29 if (~strcmpi(package,'ice') | strcmpi(solution,'transient')), 30 30 disp(sprintf(['\nsolution: ' solution ', with package: ' package ', in test: ' testname ', not supported yet.\n'])); 31 31 continue … … 34 34 %initialize model 35 35 md=model; 36 md=mesh(md,'DomainOutline.exp', 50000);36 md=mesh(md,'DomainOutline.exp',100000); 37 37 md=geography(md,'',''); 38 38 md=parameterize(md,'Square.par'); 39 md=extrude(md, 10,3);39 md=extrude(md,8,4); 40 40 md=setelementstype(md,'macayeal','all'); 41 41 if strcmpi(package,'cielo_parallel'), md.cluster='wilkes'; end 42 if md.numberofgrids== 388043 load Velocities; md.vx= 1.2*vx; md.vy=1.2*vy;42 if md.numberofgrids==832 43 load Velocities; md.vx=0.8*vx; md.vy=0.8*vy; md.vz=0.8*vz; md.temperature=temperature-1; md.pressure=pressure; 44 44 end 45 45 … … 56 56 if strcmpi(solution,'diagnostic'), 57 57 fields={'vy','vz'}; 58 elseif strcmpi(solution,'thermal _steady'),58 elseif strcmpi(solution,'thermalsteady'), 59 59 fields={'temperature','melting'}; 60 elseif strcmpi(solution,'thermal _transient'),60 elseif strcmpi(solution,'thermaltransient'), 61 61 fields={'thermaltransient_results(end).temperature','thermaltransient_results(end).melting'}; 62 62 elseif strcmpi(solution,'prognostic'),
Note:
See TracChangeset
for help on using the changeset viewer.