Changeset 13625
- Timestamp:
- 10/11/12 11:56:43 (12 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test270.m
r13136 r13625 1 md=triangle(model ,'../Exp/Square.exp',150000);1 md=triangle(model(),'../Exp/Square.exp',150000); 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md.materials=matdamageice(); 5 5 md.materials.rheology_B=paterson(md.initialization.temperature); 6 md.materials.rheology_n=3 *ones(md.mesh.numberofelements,1);6 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 7 7 md.materials.rheology_Z=0.5*ones(md.mesh.numberofvertices,1); 8 8 md=setflowequation(md,'macayeal','all'); 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 md=solve(md,DiagnosticSolutionEnum );10 md=solve(md,DiagnosticSolutionEnum()); 11 11 12 12 %Fields and tolerances to track changes -
issm/trunk-jpl/test/NightlyRun/test272.m
r13136 r13625 1 md=triangle(model ,'../Exp/Square.exp',150000);1 md=triangle(model(),'../Exp/Square.exp',150000); 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md.materials=matdamageice(); 5 5 md.materials.rheology_B=paterson(md.initialization.temperature); 6 md.materials.rheology_n=3 *ones(md.mesh.numberofelements,1);6 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 7 7 md.materials.rheology_Z=0.5*ones(md.mesh.numberofvertices,1); 8 8 md=setflowequation(md,'macayeal','all'); … … 14 14 md.inversion.max_parameters=ones(md.mesh.numberofvertices,1); 15 15 md.inversion.nsteps=2; 16 md.inversion.cost_functions=101 *ones(md.inversion.nsteps,1);16 md.inversion.cost_functions=101.*ones(md.inversion.nsteps,1); 17 17 md.inversion.cost_functions_coefficients=ones(md.mesh.numberofvertices,1); 18 18 md.inversion.gradient_scaling=0.9*ones(md.inversion.nsteps,1); 19 md.inversion.maxiter_per_step=2 *ones(md.inversion.nsteps,1);19 md.inversion.maxiter_per_step=2.*ones(md.inversion.nsteps,1); 20 20 md.inversion.step_threshold=0.99*ones(md.inversion.nsteps,1); 21 21 md.inversion.vx_obs=md.initialization.vx; … … 23 23 24 24 md.cluster=generic('name',oshostname(),'np',3); 25 md=solve(md,DiagnosticSolutionEnum );25 md=solve(md,DiagnosticSolutionEnum()); 26 26 27 27 %Fields and tolerances to track changes … … 30 30 field_values={... 31 31 (md.results.DiagnosticSolution.Gradient1),... 32 md.results.DiagnosticSolution.J,...32 (md.results.DiagnosticSolution.J),... 33 33 (md.results.DiagnosticSolution.MaterialsRheologyZbar),... 34 34 (md.results.DiagnosticSolution.Pressure),... -
issm/trunk-jpl/test/NightlyRun/test274.m
r13136 r13625 1 md=triangle(model ,'../Exp/SquareHole.exp','../Exp/Rifts.exp',50000);1 md=triangle(model(),'../Exp/SquareHole.exp','../Exp/Rifts.exp',50000); 2 2 md=meshprocessrifts(md,'../Exp/Square.exp'); 3 3 md=setmask(md,'all',''); … … 5 5 md.materials=matdamageice(); 6 6 md.materials.rheology_B=paterson(md.initialization.temperature); 7 md.materials.rheology_n=3 *ones(md.mesh.numberofelements,1);7 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 8 8 md.materials.rheology_Z=0.5*ones(md.mesh.numberofvertices,1); 9 9 md=setflowequation(md,'macayeal','all'); 10 10 11 11 md.cluster=generic('name',oshostname(),'np',3); 12 md=solve(md,DiagnosticSolutionEnum );12 md=solve(md,DiagnosticSolutionEnum()); 13 13 14 14 %Fields and tolerances to track changes
Note:
See TracChangeset
for help on using the changeset viewer.