Changeset 16989
- Timestamp:
- 12/03/13 08:33:17 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/bamg/Mesh.cpp
r16969 r16989 4101 4101 detop = det(*(*t)(VerticesOfTriangularEdge[jj][0]),*(*t)(VerticesOfTriangularEdge[jj][1]),B); 4102 4102 4103 while(t->det>0) {4103 while(t->det>0){ 4104 4104 4105 4105 /*Increase counter*/ -
issm/trunk-jpl/src/c/classes/kriging/Observations.cpp
r16164 r16989 202 202 203 203 /*If radius is not provided or is 0, return all observations*/ 204 if(radius==0 ) radius=this->quadtree->root->length;204 if(radius==0.) radius=this->quadtree->root->length; 205 205 206 206 /*Compute radius square*/ … … 214 214 } 215 215 nobs = 0; 216 for 216 for(i=0;i<tempnobs;i++){ 217 217 observation=dynamic_cast<Observation*>(this->GetObjectByOffset(tempindices[i])); 218 218 h2 = (observation->x-x_interp)*(observation->x-x_interp) + (observation->y-y_interp)*(observation->y-y_interp); 219 219 220 220 if(nobs==maxdata && h2>radius2) continue; 221 if(nobs< =maxdata){221 if(nobs<maxdata){ 222 222 indices[nobs] = tempindices[i]; 223 223 dists[nobs] = h2; … … 256 256 257 257 /*Loop over all observations and fill in x, y and obs*/ 258 for 258 for(i=0;i<nobs;i++){ 259 259 observation=dynamic_cast<Observation*>(this->GetObjectByOffset(indices[i])); 260 260 observation->WriteXYObs(&x[i],&y[i],&obs[i]); -
issm/trunk-jpl/src/c/classes/kriging/Quadtree.cpp
r16166 r16989 237 237 238 238 /*We found the closest observation, now average observation (do not change xi and yi to avoid round off errors*/ 239 box->obs[index]->x = (box->obs[index]->weight*box->obs[index]->x + x)/(box->obs[index]->weight+1 );240 box->obs[index]->y = (box->obs[index]->weight*box->obs[index]->y + y)/(box->obs[index]->weight+1 );241 box->obs[index]->xi= int((box->obs[index]->weight*double(box->obs[index]->xi) + double(xi))/(box->obs[index]->weight+1 ));242 box->obs[index]->yi= int((box->obs[index]->weight*double(box->obs[index]->yi) + double(yi))/(box->obs[index]->weight+1 ));243 box->obs[index]->value = (box->obs[index]->weight*box->obs[index]->value + value)/(box->obs[index]->weight+1 );244 box->obs[index]->weight += 1 ;239 box->obs[index]->x = (box->obs[index]->weight*box->obs[index]->x + x)/(box->obs[index]->weight+1.); 240 box->obs[index]->y = (box->obs[index]->weight*box->obs[index]->y + y)/(box->obs[index]->weight+1.); 241 box->obs[index]->xi= int((box->obs[index]->weight*double(box->obs[index]->xi) + double(xi))/(box->obs[index]->weight+1.)); 242 box->obs[index]->yi= int((box->obs[index]->weight*double(box->obs[index]->yi) + double(yi))/(box->obs[index]->weight+1.)); 243 box->obs[index]->value = (box->obs[index]->weight*box->obs[index]->value + value)/(box->obs[index]->weight+1.); 244 box->obs[index]->weight += 1.; 245 245 } 246 246 else{ -
issm/trunk-jpl/src/c/modules/Krigingx/pKrigingx.cpp
r16102 r16989 22 22 /*Intermediaries*/ 23 23 int mindata,maxdata; 24 double dmindata,dmaxdata; 24 25 double radius; 25 26 char *output = NULL; … … 39 40 ISSM_MPI_Barrier(ISSM_MPI_COMM_WORLD); start=ISSM_MPI_Wtime(); 40 41 options->Get(&radius,"searchradius",0.); 41 options->Get(&mindata,"mindata",1); 42 options->Get(&maxdata,"maxdata",50); 42 43 options->Get(&dmindata,"mindata",1.); mindata=int(dmindata);//FIXME (Options come as double but we want to retrive integers) 44 options->Get(&dmaxdata,"maxdata",50.); maxdata=int(dmaxdata);//FIXME (Options come as double but we want to retrive integers) 43 45 44 46 /*Process observation dataset*/
Note:
See TracChangeset
for help on using the changeset viewer.