Changeset 2347 for issm/trunk/src/c/objects/Tria.cpp
- Timestamp:
- 09/28/09 16:37:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Tria.cpp
r2334 r2347 2840 2840 const int numdof=2*numgrids; 2841 2841 const int NDOF2=2; 2842 int dofs1[1]={0}; 2842 2843 int dofs2[2]={0,1}; 2843 2844 double xyz_list[numgrids][3]; … … 2962 2963 #endif 2963 2964 2964 2965 2966 /*Initialize Jelem with dampening term*/ 2967 /* NOT working for NOW 2968 if (strcmp(control_type,"drag")==0 & !shelf){ 2965 /*Add dampening term to misfit*/ 2966 if (strcmp(numpar->control_type,"drag")==0 & !shelf){ 2969 2967 GetParameterDerivativeValue(&dk[0], &k[0],&xyz_list[0][0], gauss_l1l2l3); 2970 2968 Jelem+=numpar->cm_noisedampening*1/2*(pow(dk[0],2)+pow(dk[1],2))*Jdet*gauss_weight; 2971 if (id==1){ 2972 printf("id=%i value=%g k=[%g %g %g]\n",id,(pow(dk[0],2)+pow(dk[1],2)),k[0],k[1],k[2]); 2969 } 2970 else if (strcmp(numpar->control_type,"B")==0){ 2971 if(!inputs->Recover("B",&B[0],1,dofs1,numgrids,(void**)nodes)){ 2972 throw ErrorException(__FUNCT__,"parameter B not found in input"); 2973 2973 } 2974 if ((pow(dk[0],2)+pow(dk[1],2))>pow(10,-20)){2975 printf("id=%i value=%g k=[%g %g %g]\n",id,(pow(dk[0],2)+pow(dk[1],2)),k[0],k[1],k[2]);2976 }2977 }2978 else if (strcmp(control_type,"B")==0){2979 B=matice->GetB();2980 2974 GetParameterDerivativeValue(&dB[0], &B[0],&xyz_list[0][0], gauss_l1l2l3); 2981 2975 Jelem+=numpar->cm_noisedampening*1/2*(pow(dB[0],2)+pow(dB[1],2))*Jdet*gauss_weight; 2982 2976 } 2983 */ 2977 else{ 2978 throw ErrorException(__FUNCT__,exprintf("%s%s","unsupported control type: ",numpar->control_type)); 2979 } 2984 2980 2985 2981 /*Differents misfits are allowed: */
Note:
See TracChangeset
for help on using the changeset viewer.