Changeset 17120
- Timestamp:
- 01/16/14 09:13:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/LevelsetAnalysis.cpp
r17114 r17120 89 89 90 90 /*Intermediaries */ 91 int i,j,dim = 2; // solve for LSF in horizontal plane only91 const int dim = 2; // solve for LSF in horizontal plane only 92 92 IssmDouble kappa; 93 93 IssmDouble Jdet, dt, D_scalar; … … 176 176 K[0][0]=h/(2.*vel)*vx*vx; K[0][1]=h/(2.*vel)*vx*vy; 177 177 K[1][0]=h/(2.*vel)*vy*vx; K[1][1]=h/(2.*vel)*vy*vy; 178 for(i =0;i<dim;i++) for(j=0;j<dim;j++) K[i][j] = D_scalar*K[i][j];178 for(int i=0;i<dim;i++) for(int j=0;j<dim;j++) K[i][j] = D_scalar*K[i][j]; 179 179 180 180 //GetBprime(Bprime,element,xyz_list,gauss);
Note:
See TracChangeset
for help on using the changeset viewer.