Changeset 26238
- Timestamp:
- 05/04/21 14:56:31 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r26232 r26238 6142 6142 IssmDouble dY21cos_dlon,dY21sin_dlon; 6143 6143 IssmDouble LoveRotRSL,LoveRotU,LoveRothoriz; 6144 IssmDouble polenudge; 6144 6145 /*}}}*/ 6145 6146 /*Recover parameters:{{{ */ … … 6277 6278 6278 6279 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; 6280 6295 longi=longitude[i]; 6281 6296 … … 6285 6300 Y20 = -(1.0/6.0 - 0.5*cos(2.0*lati)); 6286 6301 6287 Grotm1[i]= 6288 Grotm2[i]= 6289 Grotm3[i]= 6302 Grotm1[i]= LoveRotRSL*Y21cos; 6303 Grotm2[i]= LoveRotRSL*Y21sin; 6304 Grotm3[i]= LoveRotRSL*Y20; 6290 6305 6291 6306 if (computeelastic){ 6292 GUrotm1[i]= 6293 GUrotm2[i]= 6294 GUrotm3[i]= 6307 GUrotm1[i]= LoveRotU*Y21cos; 6308 GUrotm2[i]= LoveRotU*Y21sin; 6309 GUrotm3[i]= LoveRotU*Y20; 6295 6310 if (horiz){ 6296 6311 //bed_N = Love_l * d(Y)/dlat ; 6297 6312 dY21cos_dlat=-cos(2.*lati)*cos(longi); 6298 6313 dY21sin_dlat=-cos(2.*lati)*sin(longi); 6299 dY20_dlat= -sin(2.0*lati);6300 GNrotm1[i]= 6301 GNrotm2[i]= 6302 GNrotm3[i]= 6314 dY20_dlat= -sin(2.*lati); 6315 GNrotm1[i]= LoveRothoriz*dY21cos_dlat; 6316 GNrotm2[i]= LoveRothoriz*dY21sin_dlat; 6317 GNrotm3[i]= LoveRothoriz*dY20_dlat; 6303 6318 6304 6319 //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); 6307 6322 //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; 6311 6327 } 6312 6328 }
Note:
See TracChangeset
for help on using the changeset viewer.