Changeset 14969
- Timestamp:
- 05/08/13 15:52:52 (12 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/objects/Elements/Tria.cpp
r14967 r14969 1914 1914 } 1915 1915 /*Add input to the element: */ 1916 this->inputs->AddInput(new TriaP1Input(BasisIntegralEnum,values)); 1917 1916 this->inputs->AddInput(new TriaP1Input(name,values)); 1918 1917 /*Free ressources:*/ 1919 1918 xDelete<int>(doflist); 1919 return; 1920 1920 1921 default: 1921 1922 … … 6190 6191 /*Loading term*/ 6191 6192 water_input->GetInputValue(&water_load,gauss); 6192 if(this->id==1) printf("Qin %e \n ", water_load);6193 6193 scalar = Jdet*gauss->weight*water_load; 6194 6194 if(reCast<bool,IssmDouble>(dt)) scalar = scalar*dt; … … 6248 6248 /*Loading term*/ 6249 6249 residual_input->GetInputValue(&residual_load,gauss); 6250 if(this->id==1) printf("Qres %e \n ", residual_load);6251 6250 scalar = Jdet*gauss->weight*residual_load; 6252 6251 if(reCast<bool,IssmDouble>(dt)) scalar = scalar*dt; … … 6354 6353 this->inputs->GetInputValue(&converged,ConvergedEnum); 6355 6354 GetInputListOnVertices(&intbasis[0],BasisIntegralEnum); 6356 6357 if(this->id==1) printf("val %e \n ", values[1]);6358 6355 6359 6356 if(converged){ … … 6372 6369 } 6373 6370 if(this->id==1){ 6374 printf("res %e val %e h-max %e Stor %e \n ", residual[1], values[1], h_max, sediment_storing);6371 printf("res %e val %e h-max %e Stor %e intbasis %e\n ", residual[1], values[1], h_max, sediment_storing, intbasis[1]); 6375 6372 printf("kappa %e kmax %e pen %e dt %e \n", kappa, kmax,penalty_factor,dt); 6376 6373 } … … 6463 6460 6464 6461 GetDofList(&doflist,NoneApproximationEnum,GsetEnum); 6462 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6465 6463 6466 6464 /* Start looping on the number of gaussian points: */ -
issm/trunk-jpl/src/c/solvers/solver_hydro_nonlinear.cpp
r14967 r14969 33 33 /*Recover parameters: */ 34 34 femmodel->parameters->FindParam(&isefficientlayer,HydrologydcIsefficientlayerEnum); 35 femmodel->SetCurrentConfiguration(HydrologyDCInefficientAnalysisEnum);//FIXME 36 femmodel->BasisIntegralsx(); 35 37 hydro_maxiter=100; 36 38 count=1; … … 38 40 39 41 for(;;){ 42 43 /*Computing the transfer term 44 45 46 */ 47 48 40 49 41 50 /*First layer*/
Note:
See TracChangeset
for help on using the changeset viewer.