Changes between Version 16 and Version 17 of addfield


Ignore:
Timestamp:
11/20/14 11:12:10 (10 years ago)
Author:
srebuffi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • addfield

    v16 v17  
    5757Now, you have to add a Nightly run test to check your new field keeps working as desired.
    5858
    59 NB : don't forget to modify other tests that could be concerned by the addition of this new field (for example, I have to write `md.calving.meltingrate=zeros(md.mesh.numberofvertices,1);` in other tests)
     59NB : don't forget to modify other tests that could be concerned by the addition of this new field. For example in my case, I have to write
     60
     61{{{
     62#!c
     63md.calving.meltingrate=zeros(md.mesh.numberofvertices,1);
     64}}}
     65
     66in some other already existing tests.