source: issm/trunk/test/Verification/IceShelfIceFrontM3d_2/runme.m@ 777

Last change on this file since 777 was 777, checked in by seroussi, 16 years ago

new way to compute the tolerance

  • Property svn:executable set to *
File size: 2.9 KB
Line 
1function runme(varargin)
2% This file can be run to check that the current version of issm is giving
3% coherent results. This test deals with an icesheet with icefront for a 3d model. The geometry
4% is square. Just run this file in Matlab, with a properly setup ISSM code.
5% The results of this test will indicate if there is a difference between current computations
6% and archived results.
7
8% Errors between archived results and the current version will get flagged if they are not within
9% a certain tolerance. The current tolerance is 10^-12. If you have good reasons to believe this
10% tolerance should be lowered (for example, if you are running single precision compilers?), feel
11% free to tweak the tolerance variable.
12
13%packages and analysis_types to be tested
14if nargin==1,
15 packages=varargin{1};
16else
17 packages={'ice','cielo_serial','cielo_parallel'};
18end
19solutions={'diagnostic','thermalsteady','thermaltransient','prognostic','transient'};
20
21%Initialize log message for nightly runs.
22testname='IceShelfIceFrontM3d_2';
23
24%go through the solutions requested
25for i=1:length(packages),
26 package=packages{i};
27
28 for j=1:length(solutions),
29 solution=solutions{j};
30
31 %check solution requested
32 if ((strcmpi(package,'cielo_parallel') & strcmpi(solution,'thermaltransient'))...
33 | strcmpi(package,'macayeal')...
34 | strcmpi(solution,'transient')),
35 disp(sprintf(['\nsolution: ' solution ', with package: ' package ', in test: ' testname ', not supported yet.\n']));
36 continue
37 end
38
39 %initialize model
40 md=model;
41 md=mesh(md,'DomainOutline.exp',100000);
42 md=geography(md,'all','');
43 md=parameterize(md,'Square.par');
44 md=extrude(md,8,4);
45 md=setelementstype(md,'macayeal','all');
46 if md.numberofgrids==832
47 load Velocities; md.vx=0.8*vx; md.vy=0.8*vy; md.vz=0.8*vz; md.temperature=temperature-1; md.pressure=pressure;
48 end
49
50 %compute solution
51 [analysis_type sub_analysis_type]=testsgetanalysis(solution);
52 [md packagefinal]=testsgetpackage(md,package);
53 md=solve(md,'analysis_type',analysis_type,'sub_analysis_type',sub_analysis_type,'package',packagefinal);
54
55 %compute fields to be checked
56 fields=testsgetfields(md.type,solution);
57
58 %load archive
59 eval(['load Archive' package solution ]);
60
61 for k=1:length(fields),
62
63 %Get field and tolerance
64 field=fields{k};
65 tolerance=testsgettolerance(md,package,solution,field);
66
67 %compare to archive
68 eval(['Archive=Archive' package solution '_field' num2str(k) ';']);
69 eval(['error_diff=full(max(abs(Archive-md.results.' field '))/(max(abs(Archive))+eps));']);
70
71 %disp test result
72 if (error_diff>tolerance);
73 disp(sprintf(['\n\nERROR (difference=%-7.2g > %g) --> test: %-25s solution: %-16s package: %-14s field: ' field '.\n\n'],error_diff,tolerance,testname,solution,package));
74 else
75 disp(sprintf(['\n\nSUCCESS (difference=%-7.2g < %g) --> test: %-25s solution: %-16s package: %-14s field: ' field '.\n\n'],error_diff,tolerance,testname,solution,package));
76 end
77
78 end
79 end
80end
Note: See TracBrowser for help on using the repository browser.