Changeset 4445
- Timestamp:
- 07/07/10 16:17:29 (15 years ago)
- Location:
- issm/trunk/src/c/solutions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/solutions/ResetBoundaryConditions.cpp
r4356 r4445 7 7 #include "../EnumDefinitions/EnumDefinitions.h" 8 8 9 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type , int sub_analysis_type){9 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type){ 10 10 11 11 int verbose=0; … … 16 16 if(verbose)_printf_("%s\n"," updating boundary conditions..."); 17 17 18 /*set current analysis: */ 19 femmodel->SetCurrentConfiguration(analysis_type); 20 18 21 GetSolutionFromInputsx( &ug, femmodel->elements,femmodel->nodes, femmodel->vertices,femmodel->loads, femmodel->materials, femmodel->parameters); 19 22 20 /*set current analysis: */21 femmodel->SetCurrentConfiguration(analysis_type);22 23 23 /*For this analysis_type, free existing boundary condition vectors: */ 24 24 analysis_counter=femmodel->analysis_counter; -
issm/trunk/src/c/solutions/solutions.h
r4397 r4445 46 46 void stokescontrolinit(FemModel* femmodel); 47 47 void controlrestart(FemModel* femmodel,double* J); 48 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type , int sub_analysis_type);48 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type); 49 49 50 50 //solution configuration
Note:
See TracChangeset
for help on using the changeset viewer.