Changeset 5214


Ignore:
Timestamp:
08/12/10 17:49:46 (15 years ago)
Author:
Eric.Larour
Message:

New way of expressing variables

Location:
issm/trunk/test/NightlyRun
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/NightlyRun/test423.m

    r5193 r5214  
    55md.cluster='none';
    66
     7%partitioning
     8md.npart=md.numberofgrids;
     9md=partitioner(md,'package','linear','npart',md.npart);
     10md.part=md.part-1;
     11md.qmu_analysis=1;
     12
    713%Dakota options
    814%variables
    915md.variables.rho_ice=normal_uncertain('RhoIce',md.rho_ice,0.01);
    10 md.variables.drag_coefficient=normal_uncertain('DragCoefficient',1,0.01);
     16
     17%md.variables.drag_coefficient=normal_uncertain('DragCoefficient',1,.01);
     18md.variables.drag_coefficient=normal_uncertain('DragCoefficient',1,.01*ones(md.npart,1));
    1119
    1220%responses
     
    2331md.qmu_params.tabular_graphics_data=true;
    2432
    25 %partitioning
    26 md.part=0:1:md.numberofgrids-1;
    27 md.part=md.part';
    28 md.npart=md.numberofgrids;
    29 md.qmu_analysis=1;
    3033
    3134%imperative!
  • issm/trunk/test/NightlyRun/test424.m

    r5193 r5214  
    44md=setelementstype(md,'macayeal','all');
    55md.cluster=oshostname();
     6
     7%partitioning
     8md.npart=md.numberofgrids;
     9md=partitioner(md,'package','linear','npart',md.npart);
     10md.part=md.part-1;
     11md.qmu_analysis=1;
     12
    613
    714%Dakota options
     
    2330md.qmu_params.tabular_graphics_data=true;
    2431
    25 %partitioning
    26 md.part=0:1:md.numberofgrids-1;
    27 md.part=md.part';
    28 md.npart=md.numberofgrids;
    29 md.qmu_analysis=1;
    30 
    3132%imperative!
    3233md.eps_rel=10^-5; %tighten for qmu analysese
Note: See TracChangeset for help on using the changeset viewer.