Changeset 16716
- Timestamp:
- 11/12/13 13:51:16 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r16715 r16716 10988 10988 GetInputListOnVertices(&activeEpl[0],HydrologydcMaskEplactiveEnum); 10989 10989 for(int i=0;i<3;i++){ 10990 if(!reCast<bool>(activeEpl[i]))this->nodes[i]->Deactivate(); 10990 if(!reCast<bool>(activeEpl[i])){ 10991 this->nodes[i]->Deactivate(); 10992 } 10993 else{ 10994 this->nodes[i]->Activate(); 10995 } 10991 10996 } 10992 10997 } -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16702 r16716 2960 2960 GetInputListOnVertices(&activeEpl[0],HydrologydcMaskEplactiveEnum); 2961 2961 for(int i=0;i<NUMVERTICES;i++){ 2962 if(!reCast<bool>(activeEpl[i]))this->nodes[i]->Deactivate(); 2962 if(!reCast<bool>(activeEpl[i])){ 2963 this->nodes[i]->Deactivate(); 2964 } 2965 else{ 2966 this->nodes[i]->Activate(); 2967 } 2963 2968 } 2964 2969 } -
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_hydro_nonlinear.cpp
r16685 r16716 146 146 femmodel->parameters->SetParam(EplHeadSlopeYEnum,InputToL2ProjectEnum); 147 147 solutionsequence_linear(femmodel); 148 148 149 femmodel->SetCurrentConfiguration(HydrologyDCEfficientAnalysisEnum); 149 150 150 femmodel->HydrologyEPLThicknessx(); 151 //updating mask after the computation of the epl thickness 151 //updating mask after the computation of the epl thickness (Allow to close too thin EPL) 152 152 femmodel->HydrologyEPLupdateDomainx(); 153 153 154 femmodel->HydrologyTransferx(); 154 155 SystemMatricesx(&Kff,&Kfs,&pf,&df,NULL,femmodel); -
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_linear.cpp
r16126 r16716 23 23 femmodel->parameters->FindParam(&configuration_type,ConfigurationTypeEnum); 24 24 femmodel->UpdateConstraintsx(); 25 SystemMatricesx(&Kff,&Kfs,&pf,&df,NULL,femmodel); 25 26 26 SystemMatricesx(&Kff,&Kfs,&pf,&df,NULL,femmodel);27 27 CreateNodalConstraintsx(&ys,femmodel->nodes,configuration_type); 28 28 Reduceloadx(pf, Kfs, ys); delete Kfs;
Note:
See TracChangeset
for help on using the changeset viewer.