Changeset 4363
- Timestamp:
- 06/30/10 15:25:10 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/src/c/Makefile.am ¶
r4304 r4363 370 370 ./modules/ModelProcessorx/SurfaceSlope/CreateLoadsSurfaceSlope.cpp\ 371 371 ./modules/ModelProcessorx/Control/CreateParametersControl.cpp\ 372 ./modules/ModelProcessorx/Control/UpdateElementsControl.cpp\ 372 373 ./modules/ModelProcessorx/Thermal/UpdateElementsThermal.cpp\ 373 374 ./modules/ModelProcessorx/Thermal/CreateNodesThermal.cpp\ … … 914 915 ./modules/ModelProcessorx/SurfaceSlope/CreateLoadsSurfaceSlope.cpp\ 915 916 ./modules/ModelProcessorx/Control/CreateParametersControl.cpp\ 917 ./modules/ModelProcessorx/Control/UpdateElementsControl.cpp\ 916 918 ./modules/ModelProcessorx/Thermal/UpdateElementsThermal.cpp\ 917 919 ./modules/ModelProcessorx/Thermal/CreateNodesThermal.cpp\ -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/CreateParameters.cpp ¶
r4295 r4363 107 107 xfree((void**)¶meteroutput); 108 108 109 110 109 /*Before returning, create parameters in case we are running Qmu or control types runs: */ 111 110 CreateParametersControl(¶meters,iomodel,iomodel_handle,analysis_type); -
TabularUnified issm/trunk/src/c/modules/ModelProcessorx/ModelProcessorx.h ¶
r4298 r4363 21 21 void CreateParametersControl(Parameters** pparameters,IoModel* iomodel,ConstDataHandle iomodel_handle,int analysis_type); 22 22 void CreateParametersQmu(Parameters** pparameters,IoModel* iomodel,ConstDataHandle iomodel_handle,int analysis_type); 23 void UpdateElementsControl(Elements* elements,IoModel* iomodel_handle,ConstDataHandle iomodel_handle,int analysis_counter,int analysis_type); 23 24 24 25 /*Creation of fem datasets: specialised drivers: */ -
TabularUnified issm/trunk/src/c/objects/Elements/Tria.cpp ¶
r4357 r4363 2165 2165 } 2166 2166 /*}}}*/ 2167 /*FUNCTION Tria::Update (IoModel* iomodel,int analysis_counter,int analysis_type){{{1*/2167 /*FUNCTION Tria::Update{{{1*/ 2168 2168 void Tria::Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type){ //i is the element index 2169 2169 … … 2221 2221 if (iomodel->drag_q) this->inputs->AddInput(new DoubleInput(DragQEnum,iomodel->drag_q[index])); 2222 2222 this->inputs->AddInput(new IntInput(DragTypeEnum,iomodel->drag_type)); 2223 } 2224 if (iomodel->rheology_B) { 2225 for(i=0;i<3;i++)nodeinputs[i]=iomodel->rheology_B[tria_vertex_ids[i]-1]; 2226 this->inputs->AddInput(new TriaVertexInput(RheologyBEnum,nodeinputs)); 2223 2227 } 2224 2228 if (iomodel->melting_rate) {
Note:
See TracChangeset
for help on using the changeset viewer.