Changes between Version 16 and Version 17 of addfield
- Timestamp:
- 11/20/14 11:12:10 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
addfield
v16 v17 57 57 Now, you have to add a Nightly run test to check your new field keeps working as desired. 58 58 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) 59 NB : 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 63 md.calving.meltingrate=zeros(md.mesh.numberofvertices,1); 64 }}} 65 66 in some other already existing tests.