Changeset 16989


Ignore:
Timestamp:
12/03/13 08:33:17 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing some stuff in Kriging

Location:
issm/trunk-jpl/src/c
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/bamg/Mesh.cpp

    r16969 r16989  
    41014101        detop = det(*(*t)(VerticesOfTriangularEdge[jj][0]),*(*t)(VerticesOfTriangularEdge[jj][1]),B);
    41024102
    4103         while(t->det>0) {
     4103        while(t->det>0){
    41044104
    41054105                /*Increase counter*/
  • issm/trunk-jpl/src/c/classes/kriging/Observations.cpp

    r16164 r16989  
    202202
    203203        /*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;
    205205
    206206        /*Compute radius square*/
     
    214214        }
    215215        nobs = 0;
    216         for (i=0;i<tempnobs;i++){
     216        for(i=0;i<tempnobs;i++){
    217217                observation=dynamic_cast<Observation*>(this->GetObjectByOffset(tempindices[i]));
    218218                h2 = (observation->x-x_interp)*(observation->x-x_interp) + (observation->y-y_interp)*(observation->y-y_interp);
    219219
    220220                if(nobs==maxdata && h2>radius2) continue;
    221                 if(nobs<=maxdata){
     221                if(nobs<maxdata){
    222222                        indices[nobs]   = tempindices[i];
    223223                        dists[nobs]     = h2;
     
    256256
    257257                /*Loop over all observations and fill in x, y and obs*/
    258                 for (i=0;i<nobs;i++){
     258                for(i=0;i<nobs;i++){
    259259                        observation=dynamic_cast<Observation*>(this->GetObjectByOffset(indices[i]));
    260260                        observation->WriteXYObs(&x[i],&y[i],&obs[i]);
  • issm/trunk-jpl/src/c/classes/kriging/Quadtree.cpp

    r16166 r16989  
    237237
    238238                /*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.;
    245245        }
    246246        else{
  • issm/trunk-jpl/src/c/modules/Krigingx/pKrigingx.cpp

    r16102 r16989  
    2222        /*Intermediaries*/
    2323        int           mindata,maxdata;
     24        double        dmindata,dmaxdata;
    2425        double        radius;
    2526        char         *output       = NULL;
     
    3940        ISSM_MPI_Barrier(ISSM_MPI_COMM_WORLD); start=ISSM_MPI_Wtime();
    4041        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)
    4345
    4446        /*Process observation dataset*/
Note: See TracChangeset for help on using the changeset viewer.