Changeset 5496
- Timestamp:
- 08/23/10 08:52:53 (15 years ago)
- Location:
- issm/trunk/test
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/NightlyRun/test1401.m
r5369 r5496 1 1 %test the anisotropic mesh adaptation 2 2 %function to capture = exp(-(sqrt((md.x+0.1).^2+(md.y+0.1).^2)-0.75).^2*10^6)+((md.x+0.1).^2+(md.y+0.1).^2)/2; 3 printingflag= true;3 printingflag=false; 4 4 5 5 %create square mesh … … 36 36 system(['mv mesh1_yams3.png ' ISSM_DIR '/../website/doc_pdf/validation/Images/Mesh/ ']); 37 37 end 38 x1=md.x; 39 y1=md.y; 38 40 39 41 %mesh adaptation loop BAMG … … 66 68 system(['mv mesh1_bamg3.png ' ISSM_DIR '/../website/doc_pdf/validation/Images/Mesh/ ']); 67 69 end 70 x2=md.x; 71 y2=md.y; 72 73 %Fields and tolerances to track changes 74 field_names ={'xyams' 'yyams' 'xbamg' 'ybamg'}; 75 field_tolerances={1e-13 1e-13 1e-13 1e-13}; 76 field_values={... 77 x1, y1,... 78 x2, y2,... 79 }; -
issm/trunk/test/NightlyRun/test1402.m
r5410 r5496 1 1 %test the anisotropic mesh adaptation 2 printingflag= true;2 printingflag=false; 3 3 4 4 %create square mesh … … 44 44 system(['mv mesh2_yams3.png ' ISSM_DIR '/../website/doc_pdf/validation/Images/Mesh/ ']); 45 45 end 46 x1=md.x; 47 y1=md.y; 46 48 47 49 %mesh adaptation loop BAMG … … 96 98 system(['mv mesh2_bamgiso.png ' ISSM_DIR '/../website/doc_pdf/validation/Images/Mesh/ ']); 97 99 end 100 x2=md.x; 101 y2=md.y; 102 103 %Fields and tolerances to track changes 104 field_names ={'xyams' 'yyams' 'xbamg' 'ybamg'}; 105 field_tolerances={1e-13 1e-13 1e-13 1e-13}; 106 field_values={... 107 x1, y1,... 108 x2, y2,... 109 };
Note:
See TracChangeset
for help on using the changeset viewer.