Ignore:
Timestamp:
09/28/09 16:37:13 (16 years ago)
Author:
Mathieu Morlighem
Message:

Added noise dampening term to Misfit (required addition of control_type to Numpar)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Tria.cpp

    r2334 r2347  
    28402840        const int    numdof=2*numgrids;
    28412841        const int    NDOF2=2;
     2842        int          dofs1[1]={0};
    28422843        int          dofs2[2]={0,1};
    28432844        double       xyz_list[numgrids][3];
     
    29622963                #endif
    29632964               
    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){
    29692967                        GetParameterDerivativeValue(&dk[0], &k[0],&xyz_list[0][0], gauss_l1l2l3);
    29702968                        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");
    29732973                        }
    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();
    29802974                        GetParameterDerivativeValue(&dB[0], &B[0],&xyz_list[0][0], gauss_l1l2l3);
    29812975                        Jelem+=numpar->cm_noisedampening*1/2*(pow(dB[0],2)+pow(dB[1],2))*Jdet*gauss_weight;
    29822976                }
    2983                 */
     2977                else{
     2978                        throw ErrorException(__FUNCT__,exprintf("%s%s","unsupported control type: ",numpar->control_type));
     2979                }
    29842980
    29852981                /*Differents misfits are allowed: */
Note: See TracChangeset for help on using the changeset viewer.