Changeset 8651
- Timestamp:
- 06/16/11 15:51:23 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Tria.cpp
r8649 r8651 1634 1634 thickness_input->GetParameterDerivativeValue(&dH[0],&xyz_list[0][0],gauss); 1635 1635 thicknessobs_input->GetParameterValue(&thicknessobs, gauss); 1636 weights_input->GetParameterValue(&weight, gauss,0);1637 1636 1638 1637 /*Loop over all requested responses*/ … … 1640 1639 1641 1640 case ThicknessAbsMisfitEnum: 1641 weights_input->GetParameterValue(&weight, gauss,resp); 1642 1642 for(i=0;i<numdof;i++) pe->values[i]+=(thicknessobs-thickness)*weight*Jdet*gauss->weight*l1l2l3[i]; 1643 /*Regularization of the constraint: 2000000 79 N*/ 1644 //for(i=0;i<numdof;i++) pe->values[i]+= - 1*100000*dH[0]*dbasis[0][i]*Jdet*gauss->weight; 1645 //for(i=0;i<numdof;i++) pe->values[i]+= - 1*100000*dH[1]*dbasis[1][i]*Jdet*gauss->weight; 1643 break; 1644 case ThicknessAbsGradientEnum: 1645 weights_input->GetParameterValue(&weight, gauss,resp); 1646 for(i=0;i<numdof;i++) pe->values[i]+= - weight*dH[0]*dbasis[0][i]*Jdet*gauss->weight; 1647 for(i=0;i<numdof;i++) pe->values[i]+= - weight*dH[1]*dbasis[1][i]*Jdet*gauss->weight; 1646 1648 break; 1647 1649 default: … … 2918 2920 2919 2921 for(resp=0;resp<num_responses;resp++) switch(responses[resp]){ 2922 //FIXME: the control type should be checked somewhere (with respect to what variable are we taking the gradient!) 2920 2923 2921 2924 case ThicknessAbsMisfitEnum: 2925 case ThicknessAbsGradientEnum: 2922 2926 case SurfaceAbsVelMisfitEnum: 2923 2927 case SurfaceRelVelMisfitEnum: … … 5349 5353 5350 5354 /*Tikhonov regularization: J = 1/2 ((dp/dx)^2 + (dp/dy)^2) */ 5351 //Jelem+=weight*1/2*(pow(dp[0],2.)+pow(dp[1],2.))*Jdet*gauss->weight;5355 Jelem+=weight*1/2*(pow(dp[0],2.)+pow(dp[1],2.))*Jdet*gauss->weight; 5352 5356 } 5353 5357 … … 5397 5401 /*compute ThicknessAbsMisfit*/ 5398 5402 Jelem+=0.5*pow(thickness-thicknessobs,2.0)*weight*Jdet*gauss->weight; 5399 //Jelem+=0.5*100000*(pow(dH[0],2.)+pow(dH[1],2.))*Jdet*gauss->weight;5400 5403 } 5401 5404
Note:
See TracChangeset
for help on using the changeset viewer.