Changeset 2347
- Timestamp:
- 09/28/09 16:37:13 (16 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/DataSet/DataSet.cpp
r2333 r2347 1399 1399 1400 1400 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 1403 1408 1404 1409 #ifdef _PARALLEL_ -
issm/trunk/src/c/objects/Numpar.cpp
r2344 r2347 31 31 viscosity_overshoot=UNDEF; 32 32 stokesreconditioning=UNDEF; 33 control_type=NULL; 33 34 cm_noisedampening=UNDEF; 34 35 … … 51 52 printf(" viscosity_overshoot: %g\n",viscosity_overshoot); 52 53 printf(" stokesreconditioning: %g\n",stokesreconditioning); 54 printf(" control_type: %s\n",control_type); 53 55 printf(" cm_noisedampening: %g\n",cm_noisedampening); 54 56 } … … 65 67 printf(" viscosity_overshoot: %g\n",viscosity_overshoot); 66 68 printf(" stokesreconditioning: %g\n",stokesreconditioning); 69 printf(" control_type: %s\n",control_type); 67 70 printf(" cm_noisedampening: %g\n",cm_noisedampening); 68 71 } … … 90 93 memcpy(marshalled_dataset,&viscosity_overshoot,sizeof(viscosity_overshoot));marshalled_dataset+=sizeof(viscosity_overshoot); 91 94 memcpy(marshalled_dataset,&stokesreconditioning,sizeof(stokesreconditioning));marshalled_dataset+=sizeof(stokesreconditioning); 95 memcpy(marshalled_dataset,&control_type,sizeof(control_type));marshalled_dataset+=sizeof(control_type); 92 96 memcpy(marshalled_dataset,&cm_noisedampening,sizeof(cm_noisedampening));marshalled_dataset+=sizeof(cm_noisedampening); 93 97 … … 103 107 +sizeof(viscosity_overshoot) 104 108 +sizeof(stokesreconditioning) 109 +sizeof(control_type) 105 110 +sizeof(cm_noisedampening) 106 111 +sizeof(int); //sizeof(int) for enum type … … 128 133 memcpy(&viscosity_overshoot,marshalled_dataset,sizeof(viscosity_overshoot));marshalled_dataset+=sizeof(viscosity_overshoot); 129 134 memcpy(&stokesreconditioning,marshalled_dataset,sizeof(stokesreconditioning));marshalled_dataset+=sizeof(stokesreconditioning); 135 memcpy(&control_type,marshalled_dataset,sizeof(control_type));marshalled_dataset+=sizeof(control_type); 130 136 memcpy(&cm_noisedampening,marshalled_dataset,sizeof(cm_noisedampening));marshalled_dataset+=sizeof(cm_noisedampening); 131 137 … … 163 169 if(!parameters->FindParam(&viscosity_overshoot,"viscosity_overshoot"))throw ErrorException(__FUNCT__," error message: could not update viscosity_overshoot field"); 164 170 if(!parameters->FindParam(&stokesreconditioning,"stokesreconditioning"))throw ErrorException(__FUNCT__," error message: could not update stokesreconditioning field"); 171 parameters->FindParam(&control_type,"control_type"); 165 172 if(!parameters->FindParam(&cm_noisedampening,"cm_noisedampening"))throw ErrorException(__FUNCT__," error message: could not update cm_noisedampening field"); 166 173 … … 184 191 inputs->Recover("viscosity_overshoot",&viscosity_overshoot); 185 192 inputs->Recover("stokesreconditioning",&stokesreconditioning); 193 inputs->Recover("control_type",&control_type); 186 194 inputs->Recover("cm_noisedampening",&cm_noisedampening); 187 195 -
issm/trunk/src/c/objects/Numpar.h
r2333 r2347 21 21 double viscosity_overshoot; 22 22 double stokesreconditioning; 23 char* control_type; 23 24 double cm_noisedampening; 24 25 25 26 Numpar(); 26 27 Numpar(int id); 27 Numpar(int id, double meanvel, double epsvel, int artdiff, double viscosity_overshoot, double stokesreconditioning, double cm_noisedampening);28 28 ~Numpar(); 29 29 -
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.