Changeset 16873
- Timestamp:
- 11/21/13 18:55:31 (11 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.h
r16872 r16873 118 118 virtual void GetInputValue(int* pvalue,int enum_type)=0; 119 119 virtual void GetInputValue(IssmDouble* pvalue,int enum_type)=0; 120 virtual void GetInputValue(IssmDouble* pvalue,Gauss* gauss,int enum_type)=0; 120 121 virtual void GetVerticesCoordinates(IssmDouble** xyz_list)=0; 121 122 virtual void GetVerticesCoordinatesBase(IssmDouble** xyz_list)=0; -
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r16864 r16873 193 193 194 194 /*Build friction element, needed later: */ 195 friction=new Friction( "3d",inputs,matpar,StressbalanceAnalysisEnum);195 friction=new Friction(this,3); 196 196 197 197 /* Start looping on the number of gauss 2d (nodes on the bedrock) */ … … 202 202 gauss->GaussPoint(ig); 203 203 204 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);204 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 205 205 vx_input->GetInputValue(&vx,gauss); 206 206 vy_input->GetInputValue(&vy,gauss); … … 1445 1445 if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element"); 1446 1446 input->GetInputValue(pvalue); 1447 1448 }/*}}}*/ 1449 /*FUNCTION Penta::GetInputValue(IssmDouble* pvalue,Gauss* gauss,int inputenum) {{{*/ 1450 void Penta::GetInputValue(IssmDouble* pvalue,Gauss* gauss,int inputenum){ 1451 1452 Input* input=inputs->GetInput(inputenum); 1453 if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element"); 1454 input->GetInputValue(pvalue,gauss); 1447 1455 1448 1456 }/*}}}*/ … … 4580 4588 4581 4589 /*Build friction element, needed later: */ 4582 friction=new Friction( "3d",inputs,matpar,analysis_type);4590 friction=new Friction(this,3); 4583 4591 4584 4592 /* Start looping on the number of gauss 2d (nodes on the bedrock) */ … … 4603 4611 geothermalflux_input->GetInputValue(&geothermalflux_value,gauss); 4604 4612 4605 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);4613 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 4606 4614 vx_input->GetInputValue(&vx,gauss); 4607 4615 vy_input->GetInputValue(&vy,gauss); … … 4839 4847 4840 4848 /*Build frictoin element, needed later: */ 4841 friction=new Friction( "3d",inputs,matpar,analysis_type);4849 friction=new Friction(this,3); 4842 4850 4843 4851 /* Start looping on the number of gauss 2d (nodes on the bedrock) */ … … 4851 4859 4852 4860 geothermalflux_input->GetInputValue(&geothermalflux_value,gauss); 4853 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);4861 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 4854 4862 vx_input->GetInputValue(&vx,gauss); 4855 4863 vy_input->GetInputValue(&vy,gauss); … … 4985 4993 GetInputListOnVertices(&geothermalflux[0],BasalforcingsGeothermalfluxEnum); 4986 4994 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input); 4995 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 4996 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); 4997 Input* vz_input=inputs->GetInput(VzEnum); _assert_(vz_input); 4987 4998 4988 4999 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); … … 4991 5002 /*Build friction element, needed later: */ 4992 5003 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 4993 friction=new Friction( "3d",inputs,matpar,analysis_type);5004 friction=new Friction(this,3); 4994 5005 4995 5006 /******** MELTING RATES ************************************/ … … 5032 5043 5033 5044 /*basal friction*/ 5034 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);5045 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 5035 5046 basalfriction=alpha2*(pow(vx[iv],2.0)+pow(vy[iv],2.0)+pow(vz[iv],2.0)); 5036 5047 … … 6028 6039 6029 6040 /*Build frictoin element, needed later: */ 6030 friction=new Friction( "2d",inputs,matpar,analysis_type);6041 friction=new Friction(this,2); 6031 6042 6032 6043 /* Start looping on the number of gaussian points: */ … … 6040 6051 6041 6052 /*Build alpha_complement_list: */ 6042 friction->GetAlphaComplement(&alpha_complement, gauss,VxEnum,VyEnum,VzEnum);6053 friction->GetAlphaComplement(&alpha_complement,gauss,vx_input,vy_input,NULL); 6043 6054 6044 6055 dragcoefficient_input->GetInputValue(&drag, gauss); … … 6103 6114 6104 6115 /*Build frictoin element, needed later: */ 6105 friction=new Friction( "3d",inputs,matpar,analysis_type);6116 friction=new Friction(this,3); 6106 6117 6107 6118 /* Start looping on the number of gaussian points: */ … … 6112 6123 6113 6124 /*Recover alpha_complement and drag: */ 6114 friction->GetAlphaComplement(&alpha_complement, gauss,VxEnum,VyEnum,VzEnum);6125 friction->GetAlphaComplement(&alpha_complement,gauss,vx_input,vy_input,vz_input); 6115 6126 drag_input->GetInputValue(&drag,gauss); 6116 6127 … … 6905 6916 6906 6917 /*build friction object, used later on: */ 6907 friction=new Friction( "2d",inputs,matpar,analysis_type);6918 friction=new Friction(this,2); 6908 6919 6909 6920 /* Start looping on the number of gaussian points: */ … … 6914 6925 6915 6926 /*Friction: */ 6916 friction->GetAlpha2(&alpha2, gauss,VxEnum,VyEnum,VzEnum);6927 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 6917 6928 6918 6929 GetTriaJacobianDeterminant(&Jdet2d, &xyz_list_tria[0][0],gauss); … … 7139 7150 7140 7151 /*build friction object, used later on: */ 7141 friction=new Friction( "3d",inputs,matpar,analysis_type);7152 friction=new Friction(this,3); 7142 7153 7143 7154 /* Start looping on the number of gaussian points: */ … … 7157 7168 7158 7169 NormalBase(&bed_normal[0],&xyz_list_tria[0][0]); 7159 friction->GetAlpha2(&alpha2_gauss, gauss, VxEnum,VyEnum,VzEnum);7170 friction->GetAlpha2(&alpha2_gauss, gauss,vx_input,vy_input,vz_input); 7160 7171 7161 7172 DLSSAFS[0][0]=alpha2_gauss*gauss->weight*Jdet2d; … … 7762 7773 7763 7774 /*build friction object, used later on: */ 7764 friction=new Friction( "2d",inputs,matpar,analysis_type);7775 friction=new Friction(this,2); 7765 7776 7766 7777 /*Recover portion of element that is grounded*/ … … 7784 7795 GetBHOFriction(&B[0],gauss); 7785 7796 7786 friction->GetAlpha2(&alpha2, gauss,VxEnum,VyEnum,VzEnum);7797 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 7787 7798 if(migration_style==SubelementMigrationEnum) alpha2=phi*alpha2; 7788 7799 if(migration_style==SubelementMigration2Enum){ … … 8066 8077 8067 8078 /*build friction object, used later on: */ 8068 friction=new Friction( "3d",inputs,matpar,analysis_type);8079 friction=new Friction(this,3); 8069 8080 8070 8081 /* Start looping on the number of gaussian points: */ … … 8077 8088 GetLFS(BFriction,gauss); 8078 8089 8079 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);8090 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,vz_input); 8080 8091 8081 8092 D[0*2+0] = +alpha2*gauss->weight*Jdet2d; //taub_x = -alpha2 vx … … 8324 8335 8325 8336 /*build friction object, used later on: */ 8326 friction=new Friction( "3d",inputs,matpar,analysis_type);8337 friction=new Friction(this,3); 8327 8338 8328 8339 /* Start looping on the number of gauss 2d (nodes on the bedrock) */ … … 8341 8352 this->GetStrainRate3d(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input,vz_input); 8342 8353 material->GetViscosity3dFS(&viscosity,&epsilon[0]); 8343 friction->GetAlpha2(&alpha2_gauss, gauss, VxEnum,VyEnum,VzEnum);8354 friction->GetAlpha2(&alpha2_gauss, gauss,vx_input,vy_input,vz_input); 8344 8355 8345 8356 for(i=0;i<NUMVERTICES2D;i++){ … … 8489 8500 8490 8501 /*build friction object, used later on: */ 8491 friction=new Friction( "3d",inputs,matpar,analysis_type);8502 friction=new Friction(this,3); 8492 8503 8493 8504 /* Start looping on the number of gauss 2d (nodes on the bedrock) */ … … 8506 8517 this->GetStrainRate3d(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input,vz_input); 8507 8518 material->GetViscosity3dFS(&viscosity,&epsilon[0]); 8508 friction->GetAlpha2(&alpha2_gauss, gauss, VxEnum,VyEnum,VzEnum);8519 friction->GetAlpha2(&alpha2_gauss, gauss,vx_input,vy_input,vz_input); 8509 8520 8510 8521 for(i=0;i<NUMVERTICES2D;i++){ -
issm/trunk-jpl/src/c/classes/Elements/Penta.h
r16872 r16873 241 241 void GetInputValue(int* pvalue,int enum_type); 242 242 void GetInputValue(IssmDouble* pvalue,int enum_type); 243 void GetInputValue(IssmDouble* pvalue,Gauss* gauss,int enum_type); 243 244 void GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype); 244 245 void GetPhi(IssmDouble* phi, IssmDouble* epsilon, IssmDouble viscosity); -
issm/trunk-jpl/src/c/classes/Elements/Seg.h
r16872 r16873 152 152 void GetInputValue(int* pvalue,int enum_type){_error_("not implemented yet");}; 153 153 void GetInputValue(IssmDouble* pvalue,int enum_type){_error_("not implemented yet");}; 154 void GetInputValue(IssmDouble* pvalue,Gauss* gauss,int enum_type){_error_("not implemented yet");}; 154 155 void GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype){_error_("not implemented yet");}; 155 156 IssmDouble GetYcoord(Gauss* gauss){_error_("Not implemented");}; -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16872 r16873 1526 1526 1527 1527 }/*}}}*/ 1528 /*FUNCTION Tria::GetInputValue(IssmDouble* pvalue,Gauss* gauss,int inputenum) {{{*/ 1529 void Tria::GetInputValue(IssmDouble* pvalue,Gauss* gauss,int inputenum){ 1530 1531 Input* input=inputs->GetInput(inputenum); 1532 if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element"); 1533 input->GetInputValue(pvalue,gauss); 1534 1535 }/*}}}*/ 1528 1536 /*FUNCTION Tria::GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype) {{{*/ 1529 1537 void Tria::GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype){ … … 3805 3813 3806 3814 /*build friction object, used later on: */ 3807 friction=new Friction( "1d",inputs,matpar,analysis_type);3815 friction=new Friction(this,1); 3808 3816 3809 3817 /* Start looping on the number of gauss 1d (nodes on the bedrock) */ … … 3816 3824 GetLFS(BFriction,gauss); 3817 3825 3818 friction->GetAlpha2(&alpha2,gauss, VxEnum,VyEnum,VzEnum);3826 friction->GetAlpha2(&alpha2,gauss,vx_input,vy_input,NULL); 3819 3827 D = +alpha2*gauss->weight*Jdet; //taub_x = -alpha2 vx 3820 3828 … … 3954 3962 3955 3963 /*build friction object, used later on: */ 3956 friction=new Friction( "2d",inputs,matpar,analysis_type);3964 friction=new Friction(this,2); 3957 3965 3958 3966 /*Recover portion of element that is grounded*/ … … 3972 3980 gauss->GaussPoint(ig); 3973 3981 3974 friction->GetAlpha2(&alpha2, gauss, VxEnum,VyEnum,VzEnum);3982 friction->GetAlpha2(&alpha2, gauss,vx_input,vy_input,NULL); 3975 3983 if(migration_style==SubelementMigrationEnum) alpha2=phi*alpha2; 3976 3984 if(migration_style==SubelementMigration2Enum){ … … 4961 4969 4962 4970 /*Build frictoin element, needed later: */ 4963 friction=new Friction( "2d",inputs,matpar,analysis_type);4971 friction=new Friction(this,2); 4964 4972 4965 4973 /*Retrieve all inputs we will be needing: */ … … 4980 4988 4981 4989 /*Build alpha_complement_list: */ 4982 friction->GetAlphaComplement(&alpha_complement, gauss,VxEnum,VyEnum,VzEnum);4990 friction->GetAlphaComplement(&alpha_complement,gauss,vx_input,vy_input,NULL); 4983 4991 4984 4992 dragcoefficient_input->GetInputValue(&drag, gauss); … … 5005 5013 //for (int iv=0;iv<NUMVERTICES;iv++){ 5006 5014 // gauss->GaussVertex(iv); 5007 // friction->GetAlphaComplement(&alpha_complement, gauss,VxEnum,VyEnum,VzEnum);5015 // friction->GetAlphaComplement(&alpha_complement,gauss,vx_input,vy_input,vz_input); 5008 5016 // dragcoefficient_input->GetInputValue(&drag, gauss); 5009 5017 // adjointx_input->GetInputValue(&lambda, gauss); -
issm/trunk-jpl/src/c/classes/Elements/Tria.h
r16872 r16873 283 283 void GetInputValue(int* pvalue,int enum_type); 284 284 void GetInputValue(IssmDouble* pvalue,int enum_type); 285 void GetInputValue(IssmDouble* pvalue,Gauss* gauss,int enum_type); 285 286 void GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype); 286 287 void GetStrainRate2d(IssmDouble* epsilon,IssmDouble* xyz_list,Gauss* gauss, Input* vx_input, Input* vy_input); -
issm/trunk-jpl/src/c/classes/Loads/Friction.cpp
r16373 r16873 18 18 /*FUNCTION Friction::Friction() {{{*/ 19 19 Friction::Friction(){ 20 this->element_type=NULL; 21 this->inputs=NULL; 22 this->matpar=NULL; 20 this->element=NULL; 21 this->dim=0; 23 22 } 24 23 /*}}}*/ 25 /*FUNCTION Friction::Friction( const char* element_type, Inputs* inputs,Matpar* matpar,int analysis_type){{{*/26 Friction::Friction( const char* element_type_in,Inputs* inputs_in,Matpar* matpar_in, int in_analysis_type){24 /*FUNCTION Friction::Friction(Element* element,int dim){{{*/ 25 Friction::Friction(Element* element_in,int dim_in){ 27 26 28 this->analysis_type=in_analysis_type; 29 this->inputs=inputs_in; 30 this->element_type=xNew<char>(strlen(element_type_in)+1); 31 xMemCpy<char>(this->element_type,element_type_in,(strlen(element_type_in)+1)); 32 33 this->matpar=matpar_in; 27 this->element=element_in; 28 this->dim=dim_in; 34 29 } 35 30 /*}}}*/ 36 31 /*FUNCTION Friction::~Friction() {{{*/ 37 32 Friction::~Friction(){ 38 xDelete<char>(element_type);39 33 } 40 34 /*}}}*/ … … 44 38 void Friction::Echo(void){ 45 39 _printf_("Friction:\n"); 46 _printf_(" analysis_type: " << EnumToStringx(analysis_type) << "\n"); 47 _printf_(" element_type: " << this->element_type << "\n"); 48 inputs->Echo(); 49 matpar->Echo(); 40 _printf_(" dim: " << this->dim<< "\n"); 50 41 } 51 42 /*}}}*/ 52 /*FUNCTION Friction::GetAlpha2 (IssmDouble* palpha2, GaussTria* gauss,int vxenum,int vyenum,int vzenum){{{*/53 void Friction::GetAlpha2(IssmDouble* palpha2, Gauss Tria* gauss,int vxenum,int vyenum,int vzenum){43 /*FUNCTION Friction::GetAlpha2{{{*/ 44 void Friction::GetAlpha2(IssmDouble* palpha2, Gauss* gauss,Input* vx_input,Input* vy_input,Input* vz_input){ 54 45 55 46 /*This routine calculates the basal friction coefficient … … 59 50 IssmDouble r,s; 60 51 IssmDouble drag_p, drag_q; 61 IssmDouble gravity,rho_ice,rho_water;62 52 IssmDouble Neff; 63 53 IssmDouble thickness,bed; … … 67 57 68 58 /*Recover parameters: */ 69 inputs->GetInputValue(&drag_p,FrictionPEnum); 70 inputs->GetInputValue(&drag_q,FrictionQEnum); 71 this->GetInputValue(&thickness, gauss,ThicknessEnum); 72 this->GetInputValue(&bed, gauss,BedEnum); 73 this->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum); 74 75 /*Get material parameters: */ 76 gravity=matpar->GetG(); 77 rho_ice=matpar->GetRhoIce(); 78 rho_water=matpar->GetRhoWater(); 59 element->GetInputValue(&drag_p,FrictionPEnum); 60 element->GetInputValue(&drag_q,FrictionQEnum); 61 element->GetInputValue(&thickness, gauss,ThicknessEnum); 62 element->GetInputValue(&bed, gauss,BedEnum); 63 element->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum); 64 IssmDouble rho_water = element->GetMaterialParameter(MaterialsRhoWaterEnum); 65 IssmDouble rho_ice = element->GetMaterialParameter(MaterialsRhoIceEnum); 66 IssmDouble gravity = element->GetMaterialParameter(ConstantsGEnum); 79 67 80 68 //compute r and q coefficients: */ … … 84 72 //From bed and thickness, compute effective pressure when drag is viscous: 85 73 Neff=gravity*(rho_ice*thickness+rho_water*bed); 74 if(Neff<0)Neff=0; 86 75 87 /*If effective pressure becomes negative, sliding becomes unstable (Paterson 4th edition p 148). This is because 88 the water pressure is so high, the ice sheet elevates over its ice bumps and slides. But the limit behaviour 89 for friction should be an ice shelf sliding (no basal drag). Therefore, for any effective pressure Neff < 0, we should 90 replace it by Neff=0 (ie, equival it to an ice shelf)*/ 91 if (Neff<0)Neff=0; 92 93 if(strcmp(element_type,"1d")==0){ 94 this->GetInputValue(&vx, gauss,vxenum); 95 vmag=sqrt(vx*vx); 76 switch(dim){ 77 case 1: 78 vx_input->GetInputValue(&vx,gauss); 79 vmag=sqrt(vx*vx); 80 break; 81 case 2: 82 vx_input->GetInputValue(&vx,gauss); 83 vy_input->GetInputValue(&vy,gauss); 84 vmag=sqrt(vx*vx+vy*vy); 85 break; 86 case 3: 87 vx_input->GetInputValue(&vx,gauss); 88 vy_input->GetInputValue(&vy,gauss); 89 vz_input->GetInputValue(&vz,gauss); 90 vmag=sqrt(vx*vx+vy*vy+vz*vz); 91 break; 92 default: 93 _error_("not supported"); 96 94 } 97 else if(strcmp(element_type,"2d")==0){98 this->GetInputValue(&vx, gauss,vxenum);99 this->GetInputValue(&vy, gauss,vyenum);100 vmag=sqrt(pow(vx,2)+pow(vy,2));101 }102 else if (strcmp(element_type,"3d")==0){103 this->GetInputValue(&vx, gauss,vxenum);104 this->GetInputValue(&vy, gauss,vyenum);105 this->GetInputValue(&vz, gauss,vzenum);106 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2));107 }108 else _error_("element_type "<< element_type << " not supported yet");109 95 110 96 /*Checks that s-1>0 if v=0*/ 111 if(vmag==0 && (s-1)<0) _error_("velocity is 0 and (s-1)=" << (s-1) << "<0, alpha2 is Inf");97 if(vmag==0. && (s-1.)<0.) _error_("velocity is 0 and (s-1)=" << (s-1.) << "<0, alpha2 is Inf"); 112 98 113 alpha2= pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1));99 alpha2=drag_coefficient*drag_coefficient*pow(Neff,r)*pow(vmag,(s-1.)); 114 100 _assert_(!xIsNan<IssmDouble>(alpha2)); 115 101 … … 118 104 } 119 105 /*}}}*/ 120 /*FUNCTION Friction::GetAlpha2(IssmDouble* palpha2, GaussPenta* gauss,int vxenum,int vyenum,int vzenum){{{*/ 121 void Friction::GetAlpha2(IssmDouble* palpha2, GaussPenta* gauss,int vxenum,int vyenum,int vzenum){ 122 123 /*This routine calculates the basal friction coefficient 124 alpha2= drag^2 * Neff ^r * vel ^s, with Neff=rho_ice*g*thickness+rho_ice*g*bed, r=q/p and s=1/p**/ 125 126 /*diverse: */ 127 IssmDouble r,s; 128 IssmDouble drag_p, drag_q; 129 IssmDouble gravity,rho_ice,rho_water; 130 IssmDouble Neff; 131 IssmDouble thickness,bed; 132 IssmDouble vx,vy,vz,vmag; 133 IssmDouble drag_coefficient; 134 IssmDouble alpha2; 135 136 /*Recover parameters: */ 137 inputs->GetInputValue(&drag_p,FrictionPEnum); 138 inputs->GetInputValue(&drag_q,FrictionQEnum); 139 this->GetInputValue(&thickness, gauss,ThicknessEnum); 140 this->GetInputValue(&bed, gauss,BedEnum); 141 this->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum); 142 143 /*Get material parameters: */ 144 gravity=matpar->GetG(); 145 rho_ice=matpar->GetRhoIce(); 146 rho_water=matpar->GetRhoWater(); 147 148 //compute r and q coefficients: */ 149 r=drag_q/drag_p; 150 s=1./drag_p; 151 152 //From bed and thickness, compute effective pressure when drag is viscous: 153 Neff=gravity*(rho_ice*thickness+rho_water*bed); 154 155 /*If effective pressure becomes negative, sliding becomes unstable (Paterson 4th edition p 148). This is because 156 the water pressure is so high, the ice sheet elevates over its ice bumps and slides. But the limit behaviour 157 for friction should be an ice shelf sliding (no basal drag). Therefore, for any effective pressure Neff < 0, we should 158 replace it by Neff=0 (ie, equival it to an ice shelf)*/ 159 if (Neff<0)Neff=0; 160 161 if(strcmp(element_type,"2d")==0){ 162 this->GetInputValue(&vx, gauss,vxenum); 163 this->GetInputValue(&vy, gauss,vyenum); 164 vmag=sqrt(pow(vx,2)+pow(vy,2)); 165 } 166 else if (strcmp(element_type,"3d")==0){ 167 this->GetInputValue(&vx, gauss,vxenum); 168 this->GetInputValue(&vy, gauss,vyenum); 169 this->GetInputValue(&vz, gauss,vzenum); 170 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2)); 171 } 172 else _error_("element_type "<< element_type << " not supported yet"); 173 174 /*Checks that s-1>0 if v=0*/ 175 if(vmag==0 && (s-1)<0) _error_("velocity is 0 and (s-1)=" << (s-1) << "<0, alpha_complement is Inf"); 176 177 alpha2=pow(drag_coefficient,2)*pow(Neff,r)*pow(vmag,(s-1)); 178 _assert_(!xIsNan<IssmDouble>(alpha2)); 179 180 /*Assign output pointers:*/ 181 *palpha2=alpha2; 182 } 183 /*}}}*/ 184 /*FUNCTION Friction::GetAlphaComplement(IssmDouble* palpha_complement, GaussTria* gauss,int vxenum,int vyenum,int vzenum) {{{*/ 185 void Friction::GetAlphaComplement(IssmDouble* palpha_complement, GaussTria* gauss,int vxenum,int vyenum,int vzenum){ 106 /*FUNCTION Friction::GetAlphaComplement(IssmDouble* palpha_complement, Gauss* gauss,int vxenum,int vyenum,int vzenum) {{{*/ 107 void Friction::GetAlphaComplement(IssmDouble* palpha_complement, Gauss* gauss,Input* vx_input,Input* vy_input,Input* vz_input){ 186 108 187 109 /* FrictionGetAlpha2 computes alpha2= drag^2 * Neff ^r * vel ^s, with Neff=rho_ice*g*thickness+rho_ice*g*bed, r=q/p and s=1/p. … … 196 118 IssmDouble drag_coefficient; 197 119 IssmDouble bed,thickness; 198 IssmDouble gravity,rho_ice,rho_water;199 120 IssmDouble alpha_complement; 200 121 201 122 /*Recover parameters: */ 202 inputs->GetInputValue(&drag_p,FrictionPEnum); 203 inputs->GetInputValue(&drag_q,FrictionQEnum); 204 this->GetInputValue(&thickness, gauss,ThicknessEnum); 205 this->GetInputValue(&bed, gauss,BedEnum); 206 this->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum); 207 208 /*Get material parameters: */ 209 gravity=matpar->GetG(); 210 rho_ice=matpar->GetRhoIce(); 211 rho_water=matpar->GetRhoWater(); 123 element->GetInputValue(&drag_p,FrictionPEnum); 124 element->GetInputValue(&drag_q,FrictionQEnum); 125 element->GetInputValue(&thickness, gauss,ThicknessEnum); 126 element->GetInputValue(&bed, gauss,BedEnum); 127 element->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum); 128 IssmDouble rho_water = element->GetMaterialParameter(MaterialsRhoWaterEnum); 129 IssmDouble rho_ice = element->GetMaterialParameter(MaterialsRhoIceEnum); 130 IssmDouble gravity = element->GetMaterialParameter(ConstantsGEnum); 212 131 213 132 //compute r and q coefficients: */ … … 217 136 //From bed and thickness, compute effective pressure when drag is viscous: 218 137 Neff=gravity*(rho_ice*thickness+rho_water*bed); 219 220 /*If effective pressure becomes negative, sliding becomes unstable (Paterson 4th edition p 148). This is because 221 the water pressure is so high, the ice sheet elevates over its ice bumps and slides. But the limit behaviour 222 for friction should be an ice shelf sliding (no basal drag). Therefore, for any effective pressure Neff < 0, we should 223 replace it by Neff=0 (ie, equival it to an ice shelf)*/ 224 if (Neff<0)Neff=0; 138 if(Neff<0)Neff=0; 225 139 226 140 //We need the velocity magnitude to evaluate the basal stress: 227 if(strcmp(element_type,"2d")==0){ 228 this->GetInputValue(&vx, gauss,vxenum); 229 this->GetInputValue(&vy, gauss,vyenum); 230 vmag=sqrt(pow(vx,2)+pow(vy,2)); 141 switch(dim){ 142 case 1: 143 vx_input->GetInputValue(&vx,gauss); 144 vmag=sqrt(vx*vx); 145 break; 146 case 2: 147 vx_input->GetInputValue(&vx,gauss); 148 vy_input->GetInputValue(&vy,gauss); 149 vmag=sqrt(vx*vx+vy*vy); 150 break; 151 case 3: 152 vx_input->GetInputValue(&vx,gauss); 153 vy_input->GetInputValue(&vy,gauss); 154 vz_input->GetInputValue(&vz,gauss); 155 vmag=sqrt(vx*vx+vy*vy+vz*vz); 156 break; 157 default: 158 _error_("not supported"); 231 159 } 232 else if (strcmp(element_type,"3d")==0){233 this->GetInputValue(&vx, gauss,vxenum);234 this->GetInputValue(&vy, gauss,vyenum);235 this->GetInputValue(&vz, gauss,vzenum);236 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2));237 }238 else _error_("element_type "<< element_type << " not supported yet");239 160 240 161 /*Checks that s-1>0 if v=0*/ 241 if(vmag==0 && (s-1)<0) _error_("velocity is 0 and (s-1)=" << (s-1) << "<0, alpha_complementis Inf");162 if(vmag==0. && (s-1.)<0.) _error_("velocity is 0 and (s-1)=" << (s-1.) << "<0, alpha2 is Inf"); 242 163 243 alpha_complement=pow(Neff,r)*pow(vmag,(s-1)); 164 alpha_complement=pow(Neff,r)*pow(vmag,(s-1));_assert_(!xIsNan<IssmDouble>(alpha_complement)); 244 165 245 166 /*Assign output pointers:*/ … … 247 168 } 248 169 /*}}}*/ 249 /*FUNCTION Friction::GetAlphaComplement(IssmDouble* palpha_complement, GaussPenta* gauss,int vxenum,int vyenum,int vzenum) {{{*/250 void Friction::GetAlphaComplement(IssmDouble* palpha_complement, GaussPenta* gauss,int vxenum,int vyenum,int vzenum){251 252 /* FrictionGetAlpha2 computes alpha2= drag^2 * Neff ^r * vel ^s, with Neff=rho_ice*g*thickness+rho_ice*g*bed, r=q/p and s=1/p.253 * FrictionGetAlphaComplement is used in control methods on drag, and it computes:254 * alpha_complement= Neff ^r * vel ^s*/255 256 /*diverse: */257 IssmDouble r,s;258 IssmDouble vx,vy,vz,vmag;259 IssmDouble drag_p,drag_q;260 IssmDouble Neff;261 IssmDouble drag_coefficient;262 IssmDouble bed,thickness;263 IssmDouble gravity,rho_ice,rho_water;264 IssmDouble alpha_complement;265 266 /*Recover parameters: */267 inputs->GetInputValue(&drag_p,FrictionPEnum);268 inputs->GetInputValue(&drag_q,FrictionQEnum);269 this->GetInputValue(&thickness, gauss,ThicknessEnum);270 this->GetInputValue(&bed, gauss,BedEnum);271 this->GetInputValue(&drag_coefficient, gauss,FrictionCoefficientEnum);272 273 /*Get material parameters: */274 gravity=matpar->GetG();275 rho_ice=matpar->GetRhoIce();276 rho_water=matpar->GetRhoWater();277 278 //compute r and q coefficients: */279 r=drag_q/drag_p;280 s=1./drag_p;281 282 //From bed and thickness, compute effective pressure when drag is viscous:283 Neff=gravity*(rho_ice*thickness+rho_water*bed);284 285 /*If effective pressure becomes negative, sliding becomes unstable (Paterson 4th edition p 148). This is because286 the water pressure is so high, the ice sheet elevates over its ice bumps and slides. But the limit behaviour287 for friction should be an ice shelf sliding (no basal drag). Therefore, for any effective pressure Neff < 0, we should288 replace it by Neff=0 (ie, equival it to an ice shelf)*/289 if (Neff<0)Neff=0;290 291 //We need the velocity magnitude to evaluate the basal stress:292 if(strcmp(element_type,"2d")==0){293 this->GetInputValue(&vx, gauss,vxenum);294 this->GetInputValue(&vy, gauss,vyenum);295 vmag=sqrt(pow(vx,2)+pow(vy,2));296 }297 else if (strcmp(element_type,"3d")==0){298 this->GetInputValue(&vx, gauss,vxenum);299 this->GetInputValue(&vy, gauss,vyenum);300 this->GetInputValue(&vz, gauss,vzenum);301 vmag=sqrt(pow(vx,2)+pow(vy,2)+pow(vz,2));302 }303 else _error_("element_type "<< element_type << " not supported yet");304 305 /*Checks that s-1>0 if v=0*/306 if(vmag==0 && (s-1)<0) _error_("velocity is 0 and (s-1)=" << (s-1) << "<0, alpha_complement is Inf");307 308 alpha_complement=pow(Neff,r)*pow(vmag,(s-1)); _assert_(!xIsNan<IssmDouble>(alpha_complement));309 310 /*Assign output pointers:*/311 *palpha_complement=alpha_complement;312 }313 /*}}}*/314 /*FUNCTION Friction::GetInputValue{{{*/315 void Friction::GetInputValue(IssmDouble* pvalue,GaussTria* gauss,int enum_type){316 317 Input* input=inputs->GetInput(enum_type);318 if(!input) _error_("input " << EnumToStringx(enum_type) << " not found");319 input->GetInputValue(pvalue,gauss);320 321 }322 /*}}}*/323 /*FUNCTION Friction::GetInputValue{{{*/324 void Friction::GetInputValue(IssmDouble* pvalue,GaussPenta* gauss,int enum_type){325 326 Input* input=inputs->GetInput(enum_type);327 if(!input) _error_("input " << EnumToStringx(enum_type) << " not found");328 input->GetInputValue(pvalue,gauss);329 330 }331 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Loads/Friction.h
r14951 r16873 19 19 int analysis_type; 20 20 21 char* element_type; 22 Inputs* inputs; 23 Matpar* matpar; 21 Element* element; 22 int dim; 24 23 25 24 /*methods: */ 26 25 Friction(); 27 Friction( const char* element_type, Inputs* inputs,Matpar* matpar, int analysis_type);26 Friction(Element* element_in,int dim_in); 28 27 ~Friction(); 29 28 30 29 void Echo(void); 31 void GetAlpha2(IssmDouble* palpha2, GaussTria* gauss,int vxenum,int vyenum,int vzenum); 32 void GetAlpha2(IssmDouble* palpha2, GaussPenta* gauss,int vxenum,int vyenum,int vzenum); 33 void GetAlphaComplement(IssmDouble* alpha_complement, GaussTria* gauss,int vxenum,int vyenum,int vzenum); 34 void GetAlphaComplement(IssmDouble* alpha_complement, GaussPenta* gauss,int vxenum,int vyenum,int vzenum); 35 void GetInputValue(IssmDouble* pvalue,GaussTria* gauss,int enum_type); 36 void GetInputValue(IssmDouble* pvalue,GaussPenta* gauss,int enum_type); 37 30 void GetAlpha2(IssmDouble* palpha2, Gauss* gauss,Input* vx_input,Input* vy_input,Input* vz_input); 31 void GetAlphaComplement(IssmDouble* alpha_complement,Gauss* gauss,Input* vx_input,Input* vy_input,Input* vz_input); 38 32 }; 39 33
Note:
See TracChangeset
for help on using the changeset viewer.