Changeset 2541


Ignore:
Timestamp:
10/27/09 11:08:26 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor

Location:
issm/trunk/src/m/classes/public
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/contourmassbalance.m

    r2522 r2541  
    66
    77%some checks
    8 if (length(md.vx)~=md.numberofgrids)|(length(md.vy)~=md.numberofgrids)
     8if nargin~=2,
     9        help contourmassbalance
     10        error('contourmassbalance error message: bad usage');
     11end
     12if ((length(md.vx)~=md.numberofgrids)|(length(md.vy)~=md.numberofgrids))
    913        error(['thicknessevolution error message: vx and vy should have a length of ' num2str(md.numberofgrids)])
    1014end
  • issm/trunk/src/m/classes/public/parametercontrol.m

    r2439 r2541  
    4545
    4646%cm_maxdmp
    47 cm_maxdmp_value=getfieldvalue(options,'cm_maxdmp_value',50);
     47cm_maxdmp_value=getfieldvalue(options,'cm_maxdmp_value',150);
    4848if (length(cm_maxdmp_value)~=1)
    4949        md.cm_maxdmp_value=150;
Note: See TracChangeset for help on using the changeset viewer.