Changeset 16698
- Timestamp:
- 11/09/13 21:20:38 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp ¶
r16697 r16698 952 952 void StressbalanceAnalysis::InputUpdateFromSolutionHoriz(IssmDouble* solution,Element* element){/*{{{*/ 953 953 954 int i; 955 IssmDouble rho_ice,g; 956 int* doflist=NULL; 954 int i,meshtype; 955 IssmDouble rho_ice,g; 956 int* doflist=NULL; 957 IssmDouble* xyz_list=NULL; 957 958 958 959 /*Fetch number of nodes and dof for this finite element*/ … … 969 970 IssmDouble* pressure = xNew<IssmDouble>(numnodes); 970 971 IssmDouble* thickness = xNew<IssmDouble>(numnodes); 972 IssmDouble* surface = xNew<IssmDouble>(numnodes); 971 973 972 974 /*Use the dof list to index into the solution vector: */ … … 975 977 /*Transform solution in Cartesian Space*/ 976 978 element->TransformSolutionCoord(&values[0],XYEnum); 979 element->FindParam(&meshtype,MeshTypeEnum); 977 980 978 981 /*Ok, we have vx and vy in values, fill in vx and vy arrays: */ … … 994 997 rho_ice = element->GetMaterialParameter(MaterialsRhoIceEnum); 995 998 g = element->GetMaterialParameter(ConstantsGEnum); 996 element->GetInputListOnNodes(&thickness[0],ThicknessEnum); 997 for(i=0;i<numnodes;i++) pressure[i]=rho_ice*g*thickness[i]; 999 switch(meshtype){ 1000 case Mesh2DhorizontalEnum: 1001 element->GetInputListOnNodes(&thickness[0],ThicknessEnum); 1002 for(i=0;i<numnodes;i++) pressure[i]=rho_ice*g*thickness[i]; 1003 break; 1004 case Mesh3DEnum: 1005 element->GetVerticesCoordinates(&xyz_list); 1006 element->GetInputListOnNodes(&surface[0],SurfaceEnum); 1007 for(i=0;i<numnodes;i++) pressure[i]=rho_ice*g*(surface[i]-xyz_list[i*3+2]); 1008 break; 1009 default: _error_("mesh "<<EnumToStringx(meshtype)<<" not supported yet"); 1010 } 998 1011 999 1012 /*Now, we have to move the previous Vx and Vy inputs to old … … 1011 1024 /*Free ressources:*/ 1012 1025 xDelete<IssmDouble>(thickness); 1026 xDelete<IssmDouble>(surface); 1013 1027 xDelete<IssmDouble>(pressure); 1014 1028 xDelete<IssmDouble>(vel); … … 1017 1031 xDelete<IssmDouble>(vx); 1018 1032 xDelete<IssmDouble>(values); 1033 xDelete<IssmDouble>(xyz_list); 1019 1034 xDelete<int>(doflist); 1020 1035 -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Element.h ¶
r16697 r16698 71 71 virtual void GetInputValue(int* pvalue,int enum_type)=0; 72 72 virtual void GetInputValue(IssmDouble* pvalue,int enum_type)=0; 73 virtual void GetVerticesCoordinates(IssmDouble** xyz_list)=0; 73 74 virtual void GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype)=0; 74 75 -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Penta.cpp ¶
r16697 r16698 121 121 122 122 /*Other*/ 123 /*FUNCTION Penta::AddInput{{{*/ 124 void Penta::AddInput(int input_enum,IssmDouble* values, int interpolation_enum){ 125 126 /*Call inputs method*/ 127 this->inputs->AddInput(new PentaInput(input_enum,values,interpolation_enum)); 128 } 129 /*}}}*/ 123 130 /*FUNCTION Penta::BedNormal {{{*/ 124 131 void Penta::BedNormal(IssmDouble* bed_normal, IssmDouble xyz_list[3][3]){ … … 234 241 235 242 /* Get node coordinates and dof list: */ 236 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);243 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 237 244 for(i=0;i<3;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 238 245 … … 302 309 303 310 /* Get node coordinates and dof list: */ 304 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);311 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 305 312 306 313 /*Retrieve all inputs we will be needing: */ … … 1273 1280 1274 1281 /*Get xyz list: */ 1275 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);1282 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 1276 1283 xmin=xyz_list[0][0]; xmax=xyz_list[0][0]; 1277 1284 ymin=xyz_list[0][1]; ymax=xyz_list[0][1]; … … 1468 1475 if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element"); 1469 1476 input->GetInputValue(pvalue); 1477 1478 }/*}}}*/ 1479 /*FUNCTION Penta::GetVerticesCoordinates(IssmDouble** pxyz_list){{{*/ 1480 void Penta::GetVerticesCoordinates(IssmDouble** pxyz_list){ 1481 1482 IssmDouble* xyz_list = xNew<IssmDouble>(NUMVERTICES*3); 1483 ::GetVerticesCoordinates(xyz_list,this->vertices,NUMVERTICES); 1484 1485 /*Assign output pointer*/ 1486 *pxyz_list = xyz_list; 1470 1487 1471 1488 }/*}}}*/ … … 1651 1668 IssmDouble z_list[NUMVERTICES]; 1652 1669 1653 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);1670 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 1654 1671 for(i=0;i<NUMVERTICES;i++) z_list[i]=xyz_list[i][2]; 1655 1672 PentaRef::GetInputValue(&z,z_list,gauss); … … 1955 1972 1956 1973 /*Step2: Create element thickness input*/ 1957 GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES);1974 ::GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES); 1958 1975 for(i=0;i<3;i++){ 1959 1976 Helem_list[i]=xyz_list[i+3][2]-xyz_list[i][2]; … … 3215 3232 3216 3233 /* Get node coordinates and dof list: */ 3217 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3234 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3218 3235 3219 3236 minx=xyz_list[0][0]; … … 3470 3487 3471 3488 /*Retrieve all inputs and parameters*/ 3472 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3489 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3473 3490 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 3474 3491 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 3523 3540 if(NoIceInElement())return 0; 3524 3541 3525 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3542 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3526 3543 3527 3544 /*First calculate the area of the base (cross section triangle) … … 3549 3566 rho_ice=matpar->GetRhoIce(); 3550 3567 rho_water=matpar->GetRhoWater(); 3551 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3568 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3552 3569 3553 3570 /*First calculate the area of the base (cross section triangle) … … 3770 3787 if(NoIceInElement() || !IsOnSurface()) return 0.; 3771 3788 3772 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3789 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3773 3790 3774 3791 /*First calculate the area of the base (cross section triangle) … … 3845 3862 3846 3863 /*Retrieve all inputs and parameters*/ 3847 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3864 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3848 3865 rho_water=matpar->GetRhoWater(); 3849 3866 rho_ice=matpar->GetRhoIce(); … … 3994 4011 rho_ice=matpar->GetRhoIce(); 3995 4012 heatcapacity=matpar->GetHeatCapacity(); 3996 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4013 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3997 4014 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 3998 4015 … … 4076 4093 4077 4094 /*Retrieve all inputs and parameters*/ 4078 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4095 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4079 4096 rho_water=matpar->GetRhoWater(); 4080 4097 rho_ice=matpar->GetRhoIce(); … … 4223 4240 rho_ice=matpar->GetRhoIce(); 4224 4241 heatcapacity=matpar->GetHeatCapacity(); 4225 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4242 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4226 4243 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 4227 4244 … … 4292 4309 4293 4310 /*Retrieve all inputs and parameters*/ 4294 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4311 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4295 4312 rho_ice=matpar->GetRhoIce(); 4296 4313 heatcapacity=matpar->GetHeatCapacity(); … … 4383 4400 4384 4401 /*Retrieve all inputs and parameters*/ 4385 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4402 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4386 4403 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 4387 4404 mixed_layer_capacity=matpar->GetMixedLayerCapacity(); … … 4446 4463 4447 4464 /*Retrieve all inputs and parameters*/ 4448 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4465 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4449 4466 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 4450 4467 parameters->FindParam(&analysis_type,AnalysisTypeEnum); … … 4565 4582 4566 4583 /*Retrieve all inputs and parameters*/ 4567 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4584 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4568 4585 rho_ice=matpar->GetRhoIce(); 4569 4586 heatcapacity=matpar->GetHeatCapacity(); … … 4649 4666 4650 4667 /*Retrieve all inputs and parameters*/ 4651 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4668 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4652 4669 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 4653 4670 mixed_layer_capacity=matpar->GetMixedLayerCapacity(); … … 4708 4725 4709 4726 /*Retrieve all inputs and parameters*/ 4710 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4727 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4711 4728 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 4712 4729 parameters->FindParam(&analysis_type,AnalysisTypeEnum); … … 4788 4805 4789 4806 /*Get all inputs and parameters*/ 4790 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4807 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4791 4808 Input* surface_input=inputs->GetInput(SurfaceEnum); _assert_(surface_input); 4792 4809 … … 4856 4873 4857 4874 /*Get all inputs and parameters*/ 4858 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4875 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4859 4876 GetInputListOnVertices(&pressure[0],PressureEnum); 4860 4877 Input* surface_input=inputs->GetInput(SurfaceEnum); _assert_(surface_input); … … 5029 5046 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input); 5030 5047 5031 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5048 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5032 5049 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 5033 5050 … … 5346 5363 5347 5364 /*Retrieve all inputs and parameters*/ 5348 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5365 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5349 5366 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 5350 5367 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 5416 5433 5417 5434 /*Retrieve all inputs and parameters*/ 5418 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5435 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5419 5436 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 5420 5437 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 5530 5547 5531 5548 /*Retrieve all inputs and parameters*/ 5532 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5549 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5533 5550 this->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum); 5534 5551 this->parameters->FindParam(&responses,NULL,InversionCostFunctionsEnum); … … 5726 5743 5727 5744 /*Retrieve all inputs and parameters*/ 5728 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5745 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5729 5746 this->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum); 5730 5747 this->parameters->FindParam(&responses,NULL,InversionCostFunctionsEnum); … … 6033 6050 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 6034 6051 GradientIndexing(&vertexpidlist[0],control_index); 6035 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6052 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6036 6053 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 6037 6054 Input* adjointx_input=inputs->GetInput(AdjointxEnum); _assert_(adjointx_input); … … 6105 6122 /*Retrieve all inputs and parameters*/ 6106 6123 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 6107 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6124 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6108 6125 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 6109 6126 GradientIndexing(&vertexpidlist[0],control_index); … … 6923 6940 6924 6941 /* Get node coordinates and dof list: */ 6925 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6942 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6926 6943 this->parameters->FindParam(&viscosity_overshoot,StressbalanceViscosityOvershootEnum); 6927 6944 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 7010 7027 7011 7028 /*retrieve inputs :*/ 7012 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7029 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7013 7030 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 7014 7031 parameters->FindParam(&analysis_type,AnalysisTypeEnum); … … 7129 7146 7130 7147 /* Get node coordinates and dof list: */ 7131 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7148 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7132 7149 parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 7133 7150 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 7243 7260 7244 7261 /*Retrieve all inputs and parameters*/ 7245 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7262 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7246 7263 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 7247 7264 parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); … … 7543 7560 7544 7561 /*Retrieve all inputs and parameters*/ 7545 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7562 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7546 7563 this->parameters->FindParam(&viscosity_overshoot,StressbalanceViscosityOvershootEnum); 7547 7564 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 7694 7711 7695 7712 /*Retrieve all inputs and parameters*/ 7696 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7713 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7697 7714 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 7698 7715 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 7790 7807 /*Retrieve all inputs and parameters*/ 7791 7808 inputs->GetInputValue(&approximation,ApproximationEnum); 7792 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7809 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7793 7810 this->parameters->FindParam(&viscosity_overshoot,StressbalanceViscosityOvershootEnum); 7794 7811 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 7864 7881 7865 7882 /*Retrieve all inputs and parameters*/ 7866 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7883 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7867 7884 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 7868 7885 parameters->FindParam(&migration_style,GroundinglineMigrationEnum); … … 7988 8005 7989 8006 /*Retrieve all inputs and parameters*/ 7990 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8007 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7991 8008 parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 7992 8009 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 8100 8117 8101 8118 /*Retrieve all inputs and parameters*/ 8102 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8119 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8103 8120 parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 8104 8121 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 8171 8188 8172 8189 /*Retrieve all inputs and parameters*/ 8173 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8190 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8174 8191 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 8175 8192 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 8242 8259 8243 8260 /*Retrieve all inputs and parameters*/ 8244 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8261 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8245 8262 8246 8263 /* Start looping on the number of gaussian points: */ … … 8288 8305 8289 8306 /*Retrieve all inputs and parameters*/ 8290 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8307 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8291 8308 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i+3][j]; 8292 8309 SurfaceNormal(&surface_normal[0],xyz_list_tria); … … 8355 8372 8356 8373 /*Retrieve all inputs and parameters*/ 8357 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8374 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8358 8375 this->parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 8359 8376 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 8426 8443 8427 8444 /*Retrieve all inputs and parameters*/ 8428 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8445 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8429 8446 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 8430 8447 this->parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); … … 8517 8534 8518 8535 /*Retrieve all inputs and parameters*/ 8519 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8536 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8520 8537 this->parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 8521 8538 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 8591 8608 8592 8609 /*Retrieve all inputs and parameters*/ 8593 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8610 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8594 8611 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 8595 8612 this->parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); … … 8756 8773 8757 8774 /*Retrieve all inputs and parameters*/ 8758 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8775 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8759 8776 rho_ice=matpar->GetRhoIce(); 8760 8777 gravity=matpar->GetG(); … … 8882 8899 8883 8900 /*Retrieve all inputs and parameters*/ 8884 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8901 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8885 8902 Input* thickness_input=inputs->GetInput(ThicknessEnum); _assert_(thickness_input); 8886 8903 Input* surface_input=inputs->GetInput(SurfaceEnum); _assert_(surface_input); … … 8950 8967 8951 8968 /*Initialize Element vector and other vectors*/ 8952 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8969 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8953 8970 ElementVector* pe = new ElementVector(nodes,numnodes,this->parameters,HOApproximationEnum); 8954 8971 IssmDouble* basis = xNew<IssmDouble>(numnodes); … … 9065 9082 9066 9083 /*Retrieve all inputs and parameters*/ 9067 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9084 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9068 9085 rho_water=matpar->GetRhoWater(); 9069 9086 rho_ice =matpar->GetRhoIce(); … … 9131 9148 gravity=matpar->GetG(); 9132 9149 B=material->GetB(); 9133 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9150 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9134 9151 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 9135 9152 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 9223 9240 9224 9241 /*Retrieve all inputs and parameters*/ 9225 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9242 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9226 9243 Input* loadingforcex_input=inputs->GetInput(LoadingforceXEnum); _assert_(loadingforcex_input); 9227 9244 Input* loadingforcey_input=inputs->GetInput(LoadingforceYEnum); _assert_(loadingforcey_input); … … 9298 9315 rho_water=matpar->GetRhoWater(); 9299 9316 gravity=matpar->GetG(); 9300 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9317 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9301 9318 Input* bed_input=inputs->GetInput(BedEnum); _assert_(bed_input); 9302 9319 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 9379 9396 9380 9397 /*Retrieve all inputs and parameters*/ 9381 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9398 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9382 9399 inputs->GetInputValue(&approximation,ApproximationEnum); 9383 9400 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 9438 9455 9439 9456 /*Retrieve all inputs and parameters*/ 9440 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9457 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9441 9458 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; 9442 9459 inputs->GetInputValue(&approximation,ApproximationEnum); … … 9549 9566 9550 9567 /*Retrieve all inputs and parameters*/ 9551 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9568 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9552 9569 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 9553 9570 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 9625 9642 9626 9643 /*Retrieve all inputs and parameters*/ 9627 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9644 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9628 9645 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 9629 9646 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 9843 9860 9844 9861 /*Get node data: */ 9845 GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES);9862 ::GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES); 9846 9863 9847 9864 /*Now Compute vel*/ … … 9906 9923 9907 9924 /*Get node data: */ 9908 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9925 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9909 9926 9910 9927 /*Use the dof list to index into the solution vector: */ … … 10001 10018 10002 10019 /*Get node data: */ 10003 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);10020 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 10004 10021 10005 10022 /*Use the dof list to index into the solution vector: */ … … 10117 10134 10118 10135 /*Get node data: */ 10119 GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES);10136 ::GetVerticesCoordinates(&xyz_list[0][0],penta->vertices,NUMVERTICES); 10120 10137 10121 10138 /*Now Compute vel*/ … … 10177 10194 /*Transform solution in Cartesian Space*/ 10178 10195 ::TransformSolutionCoord(&values[0],nodes,NUMVERTICES,XYEnum); 10179 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);10196 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 10180 10197 10181 10198 /*Ok, we have vx and vy in values, fill in vx and vy arrays: */ … … 10258 10275 10259 10276 /*Get node data: */ 10260 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);10277 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 10261 10278 10262 10279 /*Use the dof list to index into the solution vector: */ … … 10345 10362 10346 10363 /*Get node data: */ 10347 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);10364 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 10348 10365 10349 10366 /*Use the dof list to index into the solution vector: */ … … 10417 10434 /*Get dof list and vertices coordinates: */ 10418 10435 GetDofList(&doflist,NoneApproximationEnum,GsetEnum); 10419 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);10436 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 10420 10437 10421 10438 /*Use the dof list to index into the solution vector vz: */ -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Penta.h ¶
r16697 r16698 95 95 IssmDouble GetZcoord(GaussPenta* gauss); 96 96 void GetVectorFromInputs(Vector<IssmDouble>* vector,int name_enum); 97 void GetVerticesCoordinates(IssmDouble** pxyz_list); 97 98 98 99 int Sid(); … … 180 181 /*}}}*/ 181 182 /*Penta specific routines:{{{*/ 182 void AddInput(int input_enum, IssmDouble* values, int interpolation_enum) {_error_("not implemented yet");};183 void AddInput(int input_enum, IssmDouble* values, int interpolation_enum); 183 184 void BedNormal(IssmDouble* bed_normal, IssmDouble xyz_list[3][3]); 184 185 ElementMatrix* CreateBasalMassMatrix(void); -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Seg.cpp ¶
r16697 r16698 160 160 161 161 /*Get xyz list: */ 162 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);162 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 163 163 x1=xyz_list[0][0]; y1=xyz_list[0][1]; 164 164 x2=xyz_list[1][0]; y2=xyz_list[1][1]; … … 186 186 187 187 /*Retrieve all inputs and parameters*/ 188 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);188 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 189 189 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 190 190 this->parameters->FindParam(&stabilization,MasstransportStabilizationEnum); … … 264 264 265 265 /*Retrieve all inputs and parameters*/ 266 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);266 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 267 267 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 268 268 this->parameters->FindParam(&stabilization,MasstransportStabilizationEnum); … … 338 338 339 339 /*Retrieve all inputs and parameters*/ 340 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);340 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 341 341 342 342 /* Start looping on the number of gaussian points: */ … … 381 381 382 382 /*Retrieve all inputs and parameters*/ 383 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);383 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 384 384 this->parameters->FindParam(&input_enum,InputToL2ProjectEnum); 385 385 switch(input_enum){ … … 430 430 431 431 /*Retrieve all inputs and parameters*/ 432 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);432 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 433 433 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 434 434 Input* vy_input = inputs->GetInput(VyEnum); _assert_(vy_input); … … 475 475 476 476 /*Retrieve all inputs and parameters*/ 477 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);477 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 478 478 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 479 479 Input* vy_input = inputs->GetInput(VyEnum); _assert_(vy_input); -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Seg.h ¶
r16697 r16698 92 92 void GetNodesLidList(int* lidlist){_error_("not implemented yet");}; 93 93 int GetNumberOfNodes(void){_error_("not implemented yet");}; 94 void GetVerticesCoordinates(IssmDouble** pxyz_list){_error_("not implemented yet");}; 94 95 int Sid(){_error_("not implemented yet");}; 95 96 void InputChangeName(int input_enum, int enum_type_old){_error_("not implemented yet");}; -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Tria.cpp ¶
r16697 r16698 342 342 343 343 /*Retrieve all inputs and parameters*/ 344 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);344 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 345 345 346 346 /* Start looping on the number of gaussian points: */ … … 592 592 593 593 /*Retrieve all inputs and parameters*/ 594 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);594 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 595 595 this->parameters->FindParam(&input_enum,InputToL2ProjectEnum); 596 596 switch(input_enum){ … … 685 685 686 686 /* Get node coordinates and dof list: */ 687 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);687 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 688 688 689 689 /*Retrieve all inputs we will be needing: */ … … 907 907 908 908 /*Get xyz list: */ 909 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);909 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 910 910 x1=xyz_list[0][0]; y1=xyz_list[0][1]; 911 911 x2=xyz_list[1][0]; y2=xyz_list[1][1]; … … 2700 2700 if(NoIceInElement())return 0; 2701 2701 2702 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);2702 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2703 2703 2704 2704 for(int i=0;i<3;i++){ … … 2764 2764 2765 2765 /* Get node coordinates and dof list: */ 2766 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);2766 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2767 2767 2768 2768 minx=xyz_list[0][0]; … … 3029 3029 rho_ice=matpar->GetRhoIce(); 3030 3030 rho_water=matpar->GetRhoWater(); 3031 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3031 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3032 3032 3033 3033 /*First calculate the area of the base (cross section triangle) … … 3068 3068 3069 3069 /*Get xyz list: */ 3070 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3070 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3071 3071 3072 3072 /*get area coordinates of 0 and 1 locations: */ … … 3135 3135 3136 3136 /*Get xyz list: */ 3137 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3137 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3138 3138 3139 3139 /*get area coordinates of 0 and 1 locations: */ … … 3329 3329 if(NoIceInElement())return 0; 3330 3330 3331 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3331 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3332 3332 3333 3333 /*First calculate the area of the base (cross section triangle) … … 3429 3429 3430 3430 /*figure out gravity center of our element: */ 3431 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3431 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3432 3432 x0=(xyz_list[0][0]+xyz_list[1][0]+xyz_list[2][0])/3.0; 3433 3433 y0=(xyz_list[0][1]+xyz_list[1][1]+xyz_list[2][1])/3.0; … … 3523 3523 3524 3524 /*Retrieve all inputs and parameters*/ 3525 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3525 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3526 3526 parameters->FindParam(&FSreconditioning,StressbalanceFSreconditioningEnum); 3527 3527 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 3594 3594 3595 3595 /*Retrieve all inputs and parameters*/ 3596 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3596 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3597 3597 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 3598 3598 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 3670 3670 3671 3671 /*Retrieve all inputs and parameters*/ 3672 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3672 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3673 3673 Input* thickness_input=inputs->GetInput(ThicknessEnum); _assert_(thickness_input); 3674 3674 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); … … 3744 3744 3745 3745 /*Retrieve all inputs and parameters*/ 3746 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3746 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3747 3747 parameters->FindParam(&migration_style,GroundinglineMigrationEnum); 3748 3748 Input* surface_input=inputs->GetInput(SurfaceEnum); _assert_(surface_input); … … 3886 3886 3887 3887 /*Initialize Element matrix and vectors*/ 3888 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3888 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3889 3889 ElementVector* pe = new ElementVector(nodes,vnumnodes+pnumnodes,this->parameters,FSvelocityEnum); 3890 3890 IssmDouble* vbasis = xNew<IssmDouble>(vnumnodes); … … 3958 3958 3959 3959 /*Retrieve all inputs and parameters*/ 3960 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);3960 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3961 3961 Input* loadingforcex_input=inputs->GetInput(LoadingforceXEnum); _assert_(loadingforcex_input); 3962 3962 Input* loadingforcey_input=inputs->GetInput(LoadingforceYEnum); _assert_(loadingforcey_input); … … 4025 4025 rho_water=matpar->GetRhoWater(); 4026 4026 gravity=matpar->GetG(); 4027 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4027 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4028 4028 Input* bed_input=inputs->GetInput(BedEnum); _assert_(bed_input); 4029 4029 … … 4096 4096 4097 4097 /*Retrieve all inputs and parameters*/ 4098 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4098 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4099 4099 Input* thickness_input=inputs->GetInput(ThicknessEnum); _assert_(thickness_input); 4100 4100 Input* surface_input=inputs->GetInput(SurfaceEnum); _assert_(surface_input); … … 4165 4165 4166 4166 /*Initialize Element vector and other vectors*/ 4167 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4167 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4168 4168 ElementVector* pe = new ElementVector(nodes,numnodes,this->parameters,SSAApproximationEnum); 4169 4169 IssmDouble* basis = xNew<IssmDouble>(numnodes); … … 4284 4284 4285 4285 /*Retrieve all inputs and parameters*/ 4286 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4286 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4287 4287 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 4288 4288 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 4335 4335 IssmDouble y_list[NUMVERTICES]; 4336 4336 4337 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4337 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4338 4338 for(int i=0;i<NUMVERTICES;i++) y_list[i]=xyz_list[i][1]; 4339 4339 TriaRef::GetInputValue(&y,&y_list[0],gauss,P1Enum); … … 4583 4583 4584 4584 /*Retrieve all inputs we will be needing: */ 4585 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4585 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4586 4586 Input* weights_input = inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 4587 4587 Input* thickness_input = inputs->GetInput(ThicknessEnum); _assert_(thickness_input); … … 4836 4836 4837 4837 /*Retrieve all inputs we will be needing: */ 4838 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4838 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4839 4839 GradientIndexing(&vertexpidlist[0],control_index); 4840 4840 Input* rheologyb_input=material->inputs->GetInput(MaterialsRheologyBbarEnum); _assert_(rheologyb_input); … … 4878 4878 4879 4879 /* Get node coordinates and dof list: */ 4880 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4880 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4881 4881 GradientIndexing(&doflist[0],control_index); 4882 4882 … … 4935 4935 4936 4936 /* Get node coordinates and dof list: */ 4937 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4937 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4938 4938 GradientIndexing(&doflist[0],control_index); 4939 4939 … … 4997 4997 /*retrive parameters: */ 4998 4998 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 4999 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);4999 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5000 5000 GradientIndexing(&vertexpidlist[0],control_index); 5001 5001 this->GetConnectivityList(&connectivity[0]); … … 5077 5077 /*Retrieve all inputs we will be needing: */ 5078 5078 if(IsFloating())return; 5079 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5079 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5080 5080 GradientIndexing(&vertexpidlist[0],control_index); 5081 5081 Input* dragcoefficient_input=inputs->GetInput(FrictionCoefficientEnum); _assert_(dragcoefficient_input); … … 5137 5137 5138 5138 /* Get node coordinates and dof list: */ 5139 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5139 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5140 5140 GradientIndexing(&vertexpidlist[0],control_index); 5141 5141 … … 5180 5180 5181 5181 /* Get node coordinates and dof list: */ 5182 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5182 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5183 5183 GradientIndexing(&vertexpidlist[0],control_index); 5184 5184 … … 5229 5229 5230 5230 /* Get node coordinates and dof list: */ 5231 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5231 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5232 5232 GradientIndexing(&vertexpidlist[0],control_index); 5233 5233 5234 5234 /*Retrieve all inputs and parameters*/ 5235 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5235 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5236 5236 this->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum); 5237 5237 this->parameters->FindParam(&responses,NULL,InversionCostFunctionsEnum); … … 5348 5348 5349 5349 /*Retrieve all inputs we will be needing: */ 5350 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5350 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5351 5351 Input* weights_input =inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 5352 5352 Input* rheologyb_input=material->inputs->GetInput(MaterialsRheologyBbarEnum); _assert_(rheologyb_input); … … 5387 5387 5388 5388 /* Get node coordinates and dof list: */ 5389 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5389 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5390 5390 5391 5391 /*Retrieve all inputs we will be needing: */ … … 5446 5446 5447 5447 /* Get node coordinates and dof list: */ 5448 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5448 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5449 5449 5450 5450 /*Retrieve all inputs we will be needing: */ … … 5505 5505 5506 5506 /* Get node coordinates and dof list: */ 5507 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5507 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5508 5508 5509 5509 /*Retrieve all inputs we will be needing: */ … … 5563 5563 5564 5564 /* Get node coordinates and dof list: */ 5565 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5565 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5566 5566 5567 5567 /*Retrieve all inputs we will be needing: */ … … 5622 5622 5623 5623 /* Get node coordinates and dof list: */ 5624 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5624 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5625 5625 5626 5626 /*Retrieve all inputs we will be needing: */ … … 5684 5684 5685 5685 /*Retrieve all inputs we will be needing: */ 5686 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5686 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5687 5687 Input* weights_input =inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 5688 5688 Input* thickness_input=inputs->GetInput(ThicknessEnum); _assert_(thickness_input); … … 5728 5728 5729 5729 /*Retrieve all inputs we will be needing: */ 5730 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5730 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5731 5731 Input* weights_input = inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 5732 5732 Input* thickness_input= inputs->GetInput(ThicknessEnum); _assert_(thickness_input); … … 5779 5779 5780 5780 /*Retrieve all inputs we will be needing: */ 5781 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5781 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5782 5782 Input* weights_input = inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 5783 5783 Input* thickness_input= inputs->GetInput(ThicknessEnum); _assert_(thickness_input); … … 5827 5827 5828 5828 /*Retrieve all inputs we will be needing: */ 5829 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5829 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5830 5830 Input* thickness_input =inputs->GetInput(ThicknessEnum); _assert_(thickness_input); 5831 5831 Input* thicknessobs_input=inputs->GetInput(InversionThicknessObsEnum);_assert_(thicknessobs_input); … … 5878 5878 5879 5879 /*Retrieve all inputs and parameters*/ 5880 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5880 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5881 5881 this->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum); 5882 5882 this->parameters->FindParam(&responses,NULL,InversionCostFunctionsEnum); … … 5968 5968 5969 5969 /*Retrieve all inputs and parameters*/ 5970 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);5970 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 5971 5971 this->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum); 5972 5972 this->parameters->FindParam(&responses,NULL,InversionCostFunctionsEnum); … … 6146 6146 6147 6147 /*Retrieve all inputs we will be needing: */ 6148 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6148 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6149 6149 Input* weights_input=inputs->GetInput(InversionCostFunctionsCoefficientsEnum); _assert_(weights_input); 6150 6150 Input* drag_input =inputs->GetInput(FrictionCoefficientEnum); _assert_(drag_input); … … 6218 6218 6219 6219 /*Retrieve all inputs and parameters*/ 6220 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6220 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6221 6221 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 6222 6222 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 6390 6390 6391 6391 /*Retrieve all inputs and parameters*/ 6392 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6392 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6393 6393 latentheat = matpar->GetLatentHeat(); 6394 6394 heatcapacity = matpar->GetHeatCapacity(); … … 6526 6526 6527 6527 /*Retrieve all inputs and parameters*/ 6528 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6528 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6529 6529 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 6530 6530 this->parameters->FindParam(&diffusivity,HydrologyshreveStabilizationEnum); … … 6616 6616 6617 6617 /*Retrieve all inputs and parameters*/ 6618 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6618 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6619 6619 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 6620 6620 sediment_storing = matpar->GetSedimentStoring(); … … 6683 6683 6684 6684 /*Retrieve all inputs and parameters*/ 6685 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6685 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6686 6686 Input* thickness_input=inputs->GetInput(HydrologydcEplThicknessEnum); _assert_(thickness_input); 6687 6687 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); … … 6745 6745 6746 6746 /*Retrieve all inputs and parameters*/ 6747 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6747 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6748 6748 6749 6749 /* Start looping on the number of gaussian points: */ … … 6790 6790 6791 6791 /*Retrieve all inputs and parameters*/ 6792 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6792 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6793 6793 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 6794 6794 Input* basal_melting_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(basal_melting_input); … … 6840 6840 /*Retrieve all inputs and parameters*/ 6841 6841 sediment_storing = matpar->GetSedimentStoring(); 6842 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6842 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6843 6843 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 6844 6844 Input* water_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(water_input); … … 6906 6906 /*Retrieve all inputs and parameters*/ 6907 6907 epl_specificstoring = matpar->GetEplSpecificStoring(); 6908 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6908 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6909 6909 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 6910 6910 Input* residual_input=inputs->GetInput(SedimentHeadResidualEnum); _assert_(residual_input); … … 6976 6976 6977 6977 /*Retrieve all inputs and parameters*/ 6978 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);6978 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 6979 6979 this->parameters->FindParam(&input_enum,InputToL2ProjectEnum); 6980 6980 switch(input_enum){ … … 7407 7407 7408 7408 /*Retrieve all inputs and parameters*/ 7409 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7409 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7410 7410 7411 7411 /* Start looping on the number of gaussian points: */ … … 7453 7453 7454 7454 /*Retrieve all inputs and parameters*/ 7455 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7455 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7456 7456 7457 7457 /*Get vertex indices that lie on bed*/ … … 7503 7503 7504 7504 /*Retrieve all inputs and parameters*/ 7505 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7505 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7506 7506 7507 7507 /*Get vertex indices that lie on bed*/ … … 7567 7567 7568 7568 /*Retrieve all inputs and parameters*/ 7569 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7569 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7570 7570 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 7571 7571 this->parameters->FindParam(&meshtype,MeshTypeEnum); … … 7683 7683 7684 7684 /*Retrieve all inputs and parameters*/ 7685 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7685 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7686 7686 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 7687 7687 this->parameters->FindParam(&meshtype,MeshTypeEnum); … … 7760 7760 7761 7761 /*Retrieve all inputs and parameters*/ 7762 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7762 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7763 7763 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 7764 7764 this->parameters->FindParam(&stabilization,MasstransportStabilizationEnum); … … 7873 7873 7874 7874 /*Retrieve all inputs and parameters*/ 7875 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7875 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7876 7876 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 7877 7877 this->parameters->FindParam(&stabilization,MasstransportStabilizationEnum); … … 7995 7995 7996 7996 /*Retrieve all inputs and parameters*/ 7997 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);7997 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 7998 7998 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 7999 7999 Input* ms_input = inputs->GetInput(SurfaceforcingsMassBalanceEnum); _assert_(ms_input); … … 8046 8046 /*Retrieve all inputs and parameters*/ 8047 8047 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 8048 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8048 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8049 8049 Input* ms_input=inputs->GetInput(SurfaceforcingsMassBalanceEnum); _assert_(ms_input); 8050 8050 Input* mb_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(mb_input); … … 8089 8089 8090 8090 /*Retrieve all inputs and parameters*/ 8091 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8091 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8092 8092 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 8093 8093 Input* vz_input = inputs->GetInput(VzEnum); _assert_(vz_input); … … 8150 8150 8151 8151 /*Retrieve all inputs and parameters*/ 8152 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8152 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8153 8153 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 8154 8154 Input* vz_input = inputs->GetInput(VzEnum); _assert_(vz_input); … … 8238 8238 8239 8239 /*Retrieve all inputs and parameters*/ 8240 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8240 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8241 8241 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 8242 8242 this->parameters->FindParam(&meshtype,MeshTypeEnum); … … 8365 8365 8366 8366 /*Retrieve all inputs and parameters*/ 8367 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8367 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8368 8368 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); 8369 8369 damage_input = this->material->inputs->GetInput(DamageDbarEnum); _assert_(damage_input); … … 8662 8662 8663 8663 /*Retrieve all Inputs and parameters: */ 8664 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8664 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8665 8665 this->parameters->FindParam(&stabilization,BalancethicknessStabilizationEnum); 8666 8666 this->parameters->FindParam(&meshtype,MeshTypeEnum); … … 8767 8767 8768 8768 /*Retrieve all inputs and parameters*/ 8769 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8769 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8770 8770 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 8771 8771 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); … … 8829 8829 8830 8830 /*Retrieve all Inputs and parameters: */ 8831 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8831 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8832 8832 Input* H_input =inputs->GetInput(ThicknessEnum); _assert_(H_input); 8833 8833 h=sqrt(2.*this->GetArea()); … … 8902 8902 8903 8903 /*Retrieve all inputs and parameters*/ 8904 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8904 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8905 8905 Input* thickness_input=inputs->GetInput(ThicknessEnum); _assert_(thickness_input); 8906 8906 … … 8964 8964 8965 8965 /*Retrieve all inputs and parameters*/ 8966 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8966 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8967 8967 Input* ms_input=inputs->GetInput(SurfaceforcingsMassBalanceEnum); _assert_(ms_input); 8968 8968 Input* mb_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(mb_input); … … 9006 9006 9007 9007 /*Retrieve all inputs and parameters*/ 9008 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9008 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9009 9009 Input* ms_input=inputs->GetInput(SurfaceforcingsMassBalanceEnum); _assert_(ms_input); 9010 9010 Input* mb_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(mb_input); … … 9056 9056 9057 9057 /*Retrieve all inputs and parameters*/ 9058 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9058 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9059 9059 Input* ms_input=inputs->GetInput(SurfaceforcingsMassBalanceEnum); _assert_(ms_input); 9060 9060 Input* mb_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(mb_input); … … 9132 9132 9133 9133 /*Retrieve all inputs and parameters*/ 9134 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9134 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9135 9135 Input* H_input = inputs->GetInput(ThicknessEnum); _assert_(H_input); 9136 9136 Input* surface_input = inputs->GetInput(SurfaceEnum); _assert_(surface_input); … … 9184 9184 9185 9185 /*Retrieve all inputs and parameters*/ 9186 GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);9186 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 9187 9187 Input* H_input = inputs->GetInput(ThicknessEnum); _assert_(H_input); 9188 9188 Input* surface_input = inputs->GetInput(SurfaceEnum); _assert_(surface_input); -
TabularUnified issm/trunk-jpl/src/c/classes/Elements/Tria.h ¶
r16697 r16698 106 106 void GetSolutionFromInputsOneDof(Vector<IssmDouble>* solution,int enum_type); 107 107 void GetVectorFromInputs(Vector<IssmDouble>* vector, int name_enum); 108 void GetVerticesCoordinates(IssmDouble** pxyz_list){_error_("not implemented yet");}; 108 109 void InputCreate(IssmDouble* vector,IoModel* iomodel,int M,int N,int vector_type,int vector_enum,int code); 109 110 void InputDepthAverageAtBase(int enum_type,int average_enum_type,int object_enum=MeshElementsEnum);
Note:
See TracChangeset
for help on using the changeset viewer.