Changeset 1097
- Timestamp:
- 06/25/09 11:17:34 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/thicknessevolution.m
r27 r1097 4 4 % This routine compute the new thickness of a model after a time step 5 5 % according to the following formula: 6 % dh/dt= div(Hu)6 % dh/dt=-div(Hu) 7 7 % 8 8 % Usage: … … 40 40 %compute dhdt=div(Hu) 41 41 Hvx=H.*vx; Hvy=H.*vy; 42 dhdt= sum(Hvx(index).*alpha,2)+sum(Hvy(index).*beta,2);42 dhdt=-sum(Hvx(index).*alpha,2)-sum(Hvy(index).*beta,2);
Note:
See TracChangeset
for help on using the changeset viewer.