source:
issm/oecreview/Archive/15392-16133/ISSM-15523-15524.diff
Last change on this file was 16134, checked in by , 12 years ago | |
---|---|
File size: 3.7 KB |
-
../trunk-jpl/test/NightlyRun/IdToName.m
133 133 case 431, name='SquareSheetShelfSteaEnthalpyM3d'; 134 134 case 432, name='SquareSheetShelfSteaEnthalpyP3d'; 135 135 case 433, name='RoundSheetShelfGLMigrationM3d'; 136 case 434, name='SquareSheetShelfL1L2'; 136 137 case 501, name='PigDiagM2d'; 137 138 case 502, name='PigDiagP3d'; 138 139 case 503, name='PigDiagS3d'; -
../trunk-jpl/test/NightlyRun/test434.py
1 import numpy 2 from model import * 3 from EnumDefinitions import * 4 from MatlabFuncs import * 5 from triangle import * 6 from setmask import * 7 from parameterize import * 8 from setflowequation import * 9 from solve import * 10 11 md=triangle(model(),'../Exp/Square.exp',150000.) 12 md=setmask(md,'../Exp/SquareShelf.exp','') 13 md=parameterize(md,'../Par/SquareSheetShelf.py') 14 md.extrude(4,1.) 15 md=setflowequation(md,'l1l2','all') 16 md.cluster=generic('name',oshostname(),'np',3) 17 md=solve(md,DiagnosticSolutionEnum()) 18 19 #Fields and tolerances to track changes 20 field_names =['Vx','Vy','Vz','Vel','Pressure'] 21 field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13] 22 field_values=[\ 23 md.results.DiagnosticSolution.Vx,\ 24 md.results.DiagnosticSolution.Vy,\ 25 md.results.DiagnosticSolution.Vz,\ 26 md.results.DiagnosticSolution.Vel,\ 27 md.results.DiagnosticSolution.Pressure,\ 28 ] -
../trunk-jpl/test/NightlyRun/IdToName.py
133 133 431 : 'SquareSheetShelfSteaEnthalpyM3d', 134 134 432 : 'SquareSheetShelfSteaEnthalpyP3d', 135 135 433 : 'RoundSheetShelfGLMigrationM3d', 136 434 : 'SquareSheetShelfDiagL1L2', 136 137 501 : 'PigDiagM2d', 137 138 502 : 'PigDiagP3d', 138 139 503 : 'PigDiagS3d', -
../trunk-jpl/test/NightlyRun/test434.m
1 md=triangle(model(),'../Exp/Square.exp',150000.); 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=extrude(md,4,1.); 5 md=setflowequation(md,'l1l2','all'); 6 md.cluster=generic('name',oshostname(),'np',3); 7 md=solve(md,DiagnosticSolutionEnum()); 8 9 %Fields and tolerances to track changes 10 field_names ={'Vx','Vy','Vz','Vel','Pressure'}; 11 field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13}; 12 field_values={... 13 (md.results.DiagnosticSolution.Vx),... 14 (md.results.DiagnosticSolution.Vy),... 15 (md.results.DiagnosticSolution.Vz),... 16 (md.results.DiagnosticSolution.Vel),... 17 (md.results.DiagnosticSolution.Pressure),... 18 }; -
../trunk-jpl/test/Archives/Archive434.nc
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
Note:
See TracBrowser
for help on using the repository browser.