Changeset 21391


Ignore:
Timestamp:
11/17/16 20:52:20 (8 years ago)
Author:
Eric.Larour
Message:

CHG: fixed rotational feedback formulatoin, which was using index i instead of sid to plug values into the rotational vector. Results should be completely changed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r21350 r21391  
    24972497        IssmDouble      load_love_k2 = -0.30922675; //degree 2 load Love number
    24982498        IssmDouble      m1, m2, m3;
    2499         IssmDouble      lati, longi, value;
     2499        IssmDouble      lati, longi, radi, value;
    25002500
    25012501        /*Serialize vectors from previous iteration:*/
     
    25472547         */
    25482548        for(int i=0;i<vertices->Size();i++){
     2549                int sid;
    25492550                //Vertex* vertex=(Vertex*)vertices->GetObjectByOffset(i);
    25502551                Vertex* vertex=xDynamicCast<Vertex*>(vertices->GetObjectByOffset(i));
    2551                
    2552                 lati=latitude[i]/180*PI;        longi=longitude[i]/180*PI;
     2552                sid=vertex->Sid();
     2553
     2554                lati=latitude[sid]/180*PI;      longi=longitude[sid]/180*PI; radi=radius[sid];
    25532555
    25542556                /*only first order terms are considered now: */
    2555                 value=((1.0+tide_love_k-tide_love_h)/9.81)*pow(omega*radius[i],2.0)*
     2557                value=((1.0+tide_love_k-tide_love_h)/9.81)*pow(omega*radi,2.0)*
    25562558                                                (-m3/6.0 + 0.5*m3*cos(2.0*lati) - 0.5*sin(2.*lati)*(m1*cos(longi)+m2*sin(longi)));
    25572559       
    2558                 pSgo_rot->SetValue(vertex->Sid(),value,INS_VAL); //INS_VAL ensures that you don't add several times
     2560                pSgo_rot->SetValue(sid,value,INS_VAL); //INS_VAL ensures that you don't add several times
    25592561        }
    25602562
Note: See TracChangeset for help on using the changeset viewer.