Changeset 3788
- Timestamp:
- 05/17/10 16:21:18 (15 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Inputs/IntInput.cpp
r3784 r3788 135 135 /*}}}*/ 136 136 /*FUNCTION IntInput::GetParameterValue(int* pvalue){{{1*/ 137 void IntInput::GetParameterValue(int* pvalue){ISSMERROR(" not supported yet!");} 137 void IntInput::GetParameterValue(int* pvalue){ 138 ISSMERROR(" not supported yet!"); 139 } 138 140 /*}}}*/ 139 141 /*FUNCTION IntInput::GetParameterValue(double* pvalue){{{1*/ -
issm/trunk/src/c/objects/Loads/Icefront.cpp
r3784 r3788 139 139 140 140 /*Object marshall*/ 141 /*FUNCTION Icefront 141 /*FUNCTION Icefront::Configure {{{1*/ 142 142 void Icefront::Configure(DataSet* elementsin,DataSet* loadsin,DataSet* nodesin,DataSet* verticesin,DataSet* materialsin,Parameters* parametersin){ 143 143 … … 152 152 } 153 153 /*}}}*/ 154 /*FUNCTION Icefront 154 /*FUNCTION Icefront::copy {{{1*/ 155 155 Object* Icefront::copy() { 156 156 return new Icefront(this->id,&this->hnodes,&this->helement,&this->hmatpar,this->parameters,this->inputs); … … 201 201 } 202 202 /*}}}*/ 203 /*FUNCTION Icefront 203 /*FUNCTION Icefront::Echo {{{1*/ 204 204 void Icefront::Echo(void){ 205 this->DeepEcho(); 206 } 207 /*}}}*/ 208 /*FUNCTION Icefront Enum {{{1*/ 205 printf("Icefront:\n"); 206 printf(" id: %i\n",id); 207 hnodes.Echo(); 208 helement.Echo(); 209 hmatpar.Echo(); 210 printf(" parameters\n"); 211 parameters->Echo(); 212 printf(" inputs\n"); 213 inputs->Echo(); 214 } 215 /*}}}*/ 216 /*FUNCTION Icefront::Enum {{{1*/ 209 217 int Icefront::Enum(void){ 210 218 … … 213 221 } 214 222 /*}}}*/ 215 /*FUNCTION Icefront 223 /*FUNCTION Icefront::Id {{{1*/ 216 224 int Icefront::Id(void){ return id; } 217 225 /*}}}*/ … … 265 273 } 266 274 /*}}}*/ 267 /*FUNCTION Icefront 275 /*FUNCTION Icefront::MyRank {{{1*/ 268 276 int Icefront::MyRank(void){ 269 277 extern int my_rank; … … 273 281 274 282 /*Object functions*/ 275 /*FUNCTION Icefront 283 /*FUNCTION Icefront::CreateKMatrix {{{1*/ 276 284 277 285 void Icefront::CreateKMatrix(Mat Kgg,int analysis_type,int sub_analysis_type){ … … 283 291 } 284 292 /*}}}*/ 285 /*FUNCTION Icefront 293 /*FUNCTION Icefront::CreatePVector {{{1*/ 286 294 void Icefront::CreatePVector(Vec pg, int analysis_type,int sub_analysis_type){ 287 295 … … 312 320 } 313 321 /*}}}*/ 314 /*FUNCTION Icefront 322 /*FUNCTION Icefront::CreatePVectorDiagnosticHoriz {{{1*/ 315 323 void Icefront::CreatePVectorDiagnosticHoriz( Vec pg, int analysis_type,int sub_analysis_type){ 316 324 … … 322 330 CreatePVectorDiagnosticHorizSegment(pg,analysis_type,sub_analysis_type); 323 331 } 324 else {332 else if (type==QuadIceFrontEnum){ 325 333 CreatePVectorDiagnosticHorizQuad(pg,analysis_type,sub_analysis_type); 326 334 } 335 else ISSMERROR("type %i not supported",type); 327 336 } 328 337 /*}}}*/ 329 /*FUNCTION Icefront 338 /*FUNCTION Icefront::CreatePVectorDiagnosticHorizSegment{{{1*/ 330 339 void Icefront::CreatePVectorDiagnosticHorizSegment( Vec pg,int analysis_type,int sub_analysis_type){ 331 340 … … 420 429 } 421 430 /*}}}*/ 422 /*FUNCTION Icefront 431 /*FUNCTION Icefront::CreatePVectorDiagnosticHorizQuad {{{1*/ 423 432 void Icefront::CreatePVectorDiagnosticHorizQuad( Vec pg,int analysis_type,int sub_analysis_type){ 424 433 … … 558 567 } 559 568 /*}}}*/ 560 /*FUNCTION Icefront 569 /*FUNCTION Icefront::CreatePVectorDiagnosticStokes {{{1*/ 561 570 void Icefront::CreatePVectorDiagnosticStokes( Vec pg,int analysis_type,int sub_analysis_type){ 562 571 … … 695 704 } 696 705 /*}}}*/ 697 /*FUNCTION Icefront 706 /*FUNCTION Icefront::DistributeNumDofs {{{1*/ 698 707 void Icefront::DistributeNumDofs(int* numdofspernode,int analysis_type,int sub_analysis_type){return;} 699 708 700 709 /*}}}*/ 701 /*FUNCTION Icefront 710 /*FUNCTION Icefront::GetDofList{{{1*/ 702 711 703 712 void Icefront::GetDofList(int* doflist,int* pnumberofdofspernode){ … … 735 744 } 736 745 /*}}}*/ 737 /*FUNCTION Icefront 746 /*FUNCTION Icefront::PenaltyCreateKMatrix {{{1*/ 738 747 void Icefront::PenaltyCreateKMatrix(Mat Kgg,double kmax,int analysis_type,int sub_analysis_type){ 739 748 /*do nothing: */ 740 749 } 741 750 /*}}}*/ 742 /*FUNCTION Icefront 751 /*FUNCTION Icefront::PenaltyCreatePVector{{{1*/ 743 752 void Icefront::PenaltyCreatePVector(Vec pg,double kmax,int analysis_type,int sub_analysis_type){ 744 753 /*do nothing: */ 745 754 } 746 755 /*}}}*/ 747 /*FUNCTION Icefront 756 /*FUNCTION Icefront::QuadPressureLoad {{{1*/ 748 757 void Icefront::QuadPressureLoad(double* pe_g,double rho_water,double rho_ice,double gravity, double* thickness_list, double* bed_list, 749 758 double* normal1,double* normal2,double* normal3,double* normal4,double* xyz_list){ … … 1006 1015 } 1007 1016 /*}}}*/ 1008 /*FUNCTION Icefront 1017 /*FUNCTION Icefront::QuadPressureLoadStokes {{{1*/ 1009 1018 void Icefront::QuadPressureLoadStokes(double* pe_g,double rho_water,double rho_ice,double gravity, double* thickness_list, double* bed_list, 1010 1019 double* normal1,double* normal2,double* normal3,double* normal4,double* xyz_list){ … … 1266 1275 } 1267 1276 /*}}}*/ 1268 /*FUNCTION Icefront 1277 /*FUNCTION Icefront::SegmentPressureLoad {{{1*/ 1269 1278 1270 1279 void Icefront::SegmentPressureLoad(double* pe_g,double rho_water,double rho_ice,double gravity, double* thickness_list, double* bed_list, double* normal,double length){
Note:
See TracChangeset
for help on using the changeset viewer.