Changeset 2347


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)

Location:
issm/trunk/src/c
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/DataSet/DataSet.cpp

    r2333 r2347  
    13991399
    14001400                        num_unstable_constraints+=unstable;
    1401                 }
    1402         }
     1401                        if(unstable){
     1402                                printf("id=%i\n",pengrid->GetId());
     1403                        }
     1404                }
     1405        }
     1406        printf("num_unstable_constraints=%i\n",num_unstable_constraints);
     1407
    14031408
    14041409        #ifdef _PARALLEL_
  • issm/trunk/src/c/objects/Numpar.cpp

    r2344 r2347  
    3131        viscosity_overshoot=UNDEF;
    3232        stokesreconditioning=UNDEF;
     33        control_type=NULL;
    3334        cm_noisedampening=UNDEF;
    3435
     
    5152        printf("   viscosity_overshoot: %g\n",viscosity_overshoot);
    5253        printf("   stokesreconditioning: %g\n",stokesreconditioning);
     54        printf("   control_type: %s\n",control_type);
    5355        printf("   cm_noisedampening: %g\n",cm_noisedampening);
    5456}
     
    6567        printf("   viscosity_overshoot: %g\n",viscosity_overshoot);
    6668        printf("   stokesreconditioning: %g\n",stokesreconditioning);
     69        printf("   control_type: %s\n",control_type);
    6770        printf("   cm_noisedampening: %g\n",cm_noisedampening);
    6871}
     
    9093        memcpy(marshalled_dataset,&viscosity_overshoot,sizeof(viscosity_overshoot));marshalled_dataset+=sizeof(viscosity_overshoot);
    9194        memcpy(marshalled_dataset,&stokesreconditioning,sizeof(stokesreconditioning));marshalled_dataset+=sizeof(stokesreconditioning);
     95        memcpy(marshalled_dataset,&control_type,sizeof(control_type));marshalled_dataset+=sizeof(control_type);
    9296        memcpy(marshalled_dataset,&cm_noisedampening,sizeof(cm_noisedampening));marshalled_dataset+=sizeof(cm_noisedampening);
    9397       
     
    103107                +sizeof(viscosity_overshoot)
    104108                +sizeof(stokesreconditioning)
     109                +sizeof(control_type)
    105110                +sizeof(cm_noisedampening)
    106111                +sizeof(int); //sizeof(int) for enum type
     
    128133        memcpy(&viscosity_overshoot,marshalled_dataset,sizeof(viscosity_overshoot));marshalled_dataset+=sizeof(viscosity_overshoot);
    129134        memcpy(&stokesreconditioning,marshalled_dataset,sizeof(stokesreconditioning));marshalled_dataset+=sizeof(stokesreconditioning);
     135        memcpy(&control_type,marshalled_dataset,sizeof(control_type));marshalled_dataset+=sizeof(control_type);
    130136        memcpy(&cm_noisedampening,marshalled_dataset,sizeof(cm_noisedampening));marshalled_dataset+=sizeof(cm_noisedampening);
    131137
     
    163169        if(!parameters->FindParam(&viscosity_overshoot,"viscosity_overshoot"))throw ErrorException(__FUNCT__," error message: could not update viscosity_overshoot field");
    164170        if(!parameters->FindParam(&stokesreconditioning,"stokesreconditioning"))throw ErrorException(__FUNCT__," error message: could not update stokesreconditioning field");
     171        parameters->FindParam(&control_type,"control_type");
    165172        if(!parameters->FindParam(&cm_noisedampening,"cm_noisedampening"))throw ErrorException(__FUNCT__," error message: could not update cm_noisedampening field");
    166173
     
    184191        inputs->Recover("viscosity_overshoot",&viscosity_overshoot);
    185192        inputs->Recover("stokesreconditioning",&stokesreconditioning);
     193        inputs->Recover("control_type",&control_type);
    186194        inputs->Recover("cm_noisedampening",&cm_noisedampening);
    187195
  • issm/trunk/src/c/objects/Numpar.h

    r2333 r2347  
    2121                double viscosity_overshoot;
    2222                double stokesreconditioning;
     23                char*  control_type;
    2324                double cm_noisedampening;
    2425
    2526                Numpar();
    2627                Numpar(int id);
    27                 Numpar(int    id, double meanvel, double epsvel, int    artdiff, double viscosity_overshoot, double stokesreconditioning, double cm_noisedampening);
    2828                ~Numpar();
    2929
  • 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.