Changeset 26238


Ignore:
Timestamp:
05/04/21 14:56:31 (4 years ago)
Author:
caronlam
Message:

BUG: typo in GErotm1,2,3 and pole singularity in function SealevelchangeGeometryInitial

File:
1 edited

Legend:

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

    r26232 r26238  
    61426142        IssmDouble dY21cos_dlon,dY21sin_dlon;
    61436143        IssmDouble LoveRotRSL,LoveRotU,LoveRothoriz;
     6144        IssmDouble polenudge;
    61446145        /*}}}*/
    61456146        /*Recover parameters:{{{ */
     
    62776278
    62786279                for(int i=0;i<3;i++){
    6279                         lati=latitude[i];
     6280
     6281                        //Avoid singularity of the poles
     6282                        if (latitude[i]==M_PI/2.){
     6283                                //North pole: nudge south
     6284                                polenudge=-1.e12;
     6285                        }
     6286                        else if (latitude[i]==-M_PI/2.){
     6287                                //South pole: nudge north
     6288                                polenudge=1.e12;
     6289                        }
     6290                        else {
     6291                                polenudge=0.0;
     6292                        }
     6293
     6294                        lati=latitude[i]+polenudge;
    62806295                        longi=longitude[i];
    62816296
     
    62856300                        Y20   = -(1.0/6.0 - 0.5*cos(2.0*lati));
    62866301
    6287                         Grotm1[i]=  LoveRotRSL*Y21cos;
    6288                         Grotm2[i]=  LoveRotRSL*Y21sin;
    6289                         Grotm3[i]=  LoveRotRSL*Y20;
     6302                        Grotm1[i]= LoveRotRSL*Y21cos;
     6303                        Grotm2[i]= LoveRotRSL*Y21sin;
     6304                        Grotm3[i]= LoveRotRSL*Y20;
    62906305
    62916306                        if (computeelastic){
    6292                                 GUrotm1[i]=  LoveRotU*Y21cos;
    6293                                 GUrotm2[i]=  LoveRotU*Y21sin;
    6294                                 GUrotm3[i]=  LoveRotU*Y20;
     6307                                GUrotm1[i]= LoveRotU*Y21cos;
     6308                                GUrotm2[i]= LoveRotU*Y21sin;
     6309                                GUrotm3[i]= LoveRotU*Y20;
    62956310                                if (horiz){
    62966311                                //bed_N = Love_l * d(Y)/dlat ;
    62976312                                dY21cos_dlat=-cos(2.*lati)*cos(longi);
    62986313                                dY21sin_dlat=-cos(2.*lati)*sin(longi);
    6299                                 dY20_dlat=-sin(2.0*lati);
    6300                                 GNrotm1[i]=  LoveRothoriz*dY21cos_dlat;
    6301                                 GNrotm2[i]=  LoveRothoriz*dY21sin_dlat;
    6302                                 GNrotm3[i]=  LoveRothoriz*dY20_dlat;
     6314                                dY20_dlat=   -sin(2.*lati);
     6315                                GNrotm1[i]= LoveRothoriz*dY21cos_dlat;
     6316                                GNrotm2[i]= LoveRothoriz*dY21sin_dlat;
     6317                                GNrotm3[i]= LoveRothoriz*dY20_dlat;
    63036318
    63046319                                //bed_E = Love_l * 1/cos(lat) * d(Y)/dlon ;
    6305                                 dY21cos_dlon=-Y21sin;
    6306                                 dY21sin_dlon=Y21cos;
     6320                                dY21cos_dlon=-Y21sin/cos(lati);
     6321                                dY21sin_dlon=Y21cos/cos(lati);
    63076322                                //dY20_dlon=0.;
    6308                                 GNrotm1[i]=  LoveRothoriz*dY21cos_dlon/cos(lati);
    6309                                 GNrotm2[i]=  LoveRothoriz*dY21sin_dlon/cos(lati);
    6310                                 GNrotm3[i]=  0.0;
     6323
     6324                                GErotm1[i]= LoveRothoriz*dY21cos_dlon;
     6325                                GErotm2[i]= LoveRothoriz*dY21sin_dlon;
     6326                                GErotm3[i]= 0.0;
    63116327                                }
    63126328                        }
Note: See TracChangeset for help on using the changeset viewer.