Changeset 1864
- Timestamp:
- 08/25/09 10:06:03 (16 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r1854 r1864 604 604 ./parallel/transient_core_2d.cpp\ 605 605 ./parallel/transient_core_3d.cpp\ 606 ./parallel/ thermalstatic_core.cpp\606 ./parallel/steadystate_core.cpp\ 607 607 ./parallel/OutputResults.cpp 608 608 … … 612 612 bin_PROGRAMS = 613 613 else 614 bin_PROGRAMS = diagnostic.exe control.exe thermal.exe prognostic.exe transient.exe thermalstatic.exe614 bin_PROGRAMS = diagnostic.exe control.exe thermal.exe prognostic.exe transient.exe steadystate.exe 615 615 endif 616 616 … … 620 620 diagnostic_exe_CXXFLAGS= -fPIC -D_PARALLEL_ 621 621 622 thermalstatic_exe_SOURCES = parallel/thermalstatic.cpp623 thermalstatic_exe_CXXFLAGS= -fPIC -D_PARALLEL_622 steadystate_exe_SOURCES = parallel/steadystate.cpp 623 steadystate_exe_CXXFLAGS= -fPIC -D_PARALLEL_ 624 624 625 625 control_exe_SOURCES = parallel/control.cpp -
issm/trunk/src/c/ModelProcessorx/CreateParameters.cpp
r1854 r1864 67 67 //control: thermal static 68 68 count++; 69 param= new Param(count," thermalstatic",INTEGER);70 param->SetInteger(iomodel-> thermalstatic);69 param= new Param(count,"steadystate",INTEGER); 70 param->SetInteger(iomodel->steadystate); 71 71 parameters->AddObject(param); 72 72 -
issm/trunk/src/c/ModelProcessorx/IoModel.cpp
r1838 r1864 104 104 /*!control methods: */ 105 105 iomodel->control_type=NULL; 106 iomodel-> thermalstatic=0;106 iomodel->steadystate=0; 107 107 108 108 /*!solution parameters: */ … … 315 315 /*Get control parameters: */ 316 316 IoModelFetchData((void**)&iomodel->control_type,NULL,NULL,iomodel_handle,"control_type","String",NULL); 317 IoModelFetchData((void**)&iomodel-> thermalstatic,NULL,NULL,iomodel_handle,"thermalstatic","Integer",NULL);317 IoModelFetchData((void**)&iomodel->steadystate,NULL,NULL,iomodel_handle,"steadystate","Integer",NULL); 318 318 319 319 /*!Get solution parameters: */ -
issm/trunk/src/c/ModelProcessorx/IoModel.h
r1838 r1864 103 103 /*control methods: */ 104 104 char* control_type; 105 int thermalstatic;105 int steadystate; 106 106 107 107 /*solution parameters: */
Note:
See TracChangeset
for help on using the changeset viewer.