source: issm/oecreview/Archive/15392-16133/ISSM-15523-15524.diff@ 16134

Last change on this file since 16134 was 16134, checked in by Mathieu Morlighem, 12 years ago

Added Archive/15392-16133

File size: 3.7 KB
  • ../trunk-jpl/test/NightlyRun/IdToName.m

     
    133133        case 431, name='SquareSheetShelfSteaEnthalpyM3d';
    134134        case 432, name='SquareSheetShelfSteaEnthalpyP3d';
    135135        case 433, name='RoundSheetShelfGLMigrationM3d';
     136        case 434, name='SquareSheetShelfL1L2';
    136137        case 501, name='PigDiagM2d';
    137138        case 502, name='PigDiagP3d';
    138139        case 503, name='PigDiagS3d';
  • ../trunk-jpl/test/NightlyRun/test434.py

     
     1import numpy
     2from model import *
     3from EnumDefinitions import *
     4from MatlabFuncs import *
     5from triangle import *
     6from setmask import *
     7from parameterize import *
     8from setflowequation import *
     9from solve import *
     10
     11md=triangle(model(),'../Exp/Square.exp',150000.)
     12md=setmask(md,'../Exp/SquareShelf.exp','')
     13md=parameterize(md,'../Par/SquareSheetShelf.py')
     14md.extrude(4,1.)
     15md=setflowequation(md,'l1l2','all')
     16md.cluster=generic('name',oshostname(),'np',3)
     17md=solve(md,DiagnosticSolutionEnum())
     18
     19#Fields and tolerances to track changes
     20field_names     =['Vx','Vy','Vz','Vel','Pressure']
     21field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13]
     22field_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

     
    133133                431 : 'SquareSheetShelfSteaEnthalpyM3d',
    134134                432 : 'SquareSheetShelfSteaEnthalpyP3d',
    135135                433 : 'RoundSheetShelfGLMigrationM3d',
     136                434 : 'SquareSheetShelfDiagL1L2',
    136137                501 : 'PigDiagM2d',
    137138                502 : 'PigDiagP3d',
    138139                503 : 'PigDiagS3d',
  • ../trunk-jpl/test/NightlyRun/test434.m

     
     1md=triangle(model(),'../Exp/Square.exp',150000.);
     2md=setmask(md,'../Exp/SquareShelf.exp','');
     3md=parameterize(md,'../Par/SquareSheetShelf.par');
     4md=extrude(md,4,1.);
     5md=setflowequation(md,'l1l2','all');
     6md.cluster=generic('name',oshostname(),'np',3);
     7md=solve(md,DiagnosticSolutionEnum());
     8
     9%Fields and tolerances to track changes
     10field_names     ={'Vx','Vy','Vz','Vel','Pressure'};
     11field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
     12field_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.