Changeset 5462
- Timestamp:
- 08/20/10 16:24:05 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r5400 r5462 1108 1108 ./solutions/WriteLockFile.cpp\ 1109 1109 ./solutions/control_core.cpp\ 1110 ./solutions/stokescontrolinit.cpp\1111 1110 ./solutions/controlrestart.cpp\ 1112 1111 ./solutions/controlconvergence.cpp\ -
issm/trunk/src/c/solutions/control_core.cpp
r5458 r5462 25 25 int dim; 26 26 int solution_type; 27 bool isstokes; 27 28 28 29 double* responses=NULL; … … 56 57 femmodel->parameters->FindParam(&dim,DimEnum); 57 58 femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum); 59 femmodel->parameters->FindParam(&isstokes,IsStokesEnum); 58 60 /*}}}*/ 59 61 … … 62 64 AdjointCorePointerFromSolutionEnum(&adjointcore,solution_type); 63 65 64 /*some preliminary work to be done if running full-Stokes analysis: */ 65 // if (solution_type==SteadystateSolutionEnum || solution_type==DiagnosticSolutionEnum){ 66 // stokescontrolinit(femmodel); 67 // } 66 /*Launch once a complete solution to set up all inputs*/ 67 _printf_("%s\n"," preparing initial solution"); 68 if (isstokes) solutioncore(femmodel); 68 69 69 70 /*Initialize responses: */ -
issm/trunk/src/c/solutions/solutions.h
r5378 r5462 43 43 //diverse 44 44 void WriteLockFile(char* filename); 45 void stokescontrolinit(FemModel* femmodel);46 45 void controlrestart(FemModel* femmodel,double* J); 47 46 void ResetBoundaryConditions(FemModel* femmodel, int analysis_type);
Note:
See TracChangeset
for help on using the changeset viewer.