Changeset 18277
- Timestamp:
- 07/21/14 17:43:07 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/DamageEvolutionAnalysis.cpp
r18237 r18277 548 548 549 549 /*Compute stress tensor: */ 550 element->Compute DeviatoricStressTensor();550 element->ComputeStrainRate(); 551 551 552 552 /*retrieve what we need: */ -
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r18245 r18277 89 89 int numoutputs; 90 90 char** requestedoutputs = NULL; 91 int materials_type; 91 92 92 93 parameters->AddObject(iomodel->CopyConstantObject(FlowequationIsSIAEnum)); … … 114 115 parameters->AddObject(iomodel->CopyConstantObject(AugmentedLagrangianRlambdaEnum)); 115 116 parameters->AddObject(iomodel->CopyConstantObject(AugmentedLagrangianThetaEnum)); 117 } 118 119 iomodel->Constant(&materials_type,MaterialsEnum); 120 if(materials_type==MatdamageiceEnum){ 121 parameters->AddObject(iomodel->CopyConstantObject(DamageC1Enum)); 122 parameters->AddObject(iomodel->CopyConstantObject(DamageStressThresholdEnum)); 116 123 } 117 124 -
issm/trunk-jpl/src/c/classes/Elements/Element.cpp
r18246 r18277 46 46 IssmDouble eps_xx,eps_xy,eps_yy,eps_xz,eps_yz,eps_zz,eps_eff; 47 47 IssmDouble epsmin=1.e-27; 48 int dim; 49 50 /*Retrieve all inputs we will be needing: */ 51 /* TODO: retrieve parameters eps_0 and eps_f and input DamageD(bar?) */ 48 IssmDouble eps_0,eps_f,sigma_0,B,D,n; 49 int dim,counter=0; 50 IssmDouble k1,k2,threshold=1.e-12; 51 52 /* Retrieve parameters */ 52 53 this->GetVerticesCoordinates(&xyz_list); 53 54 this->ComputeStrainRate(); 54 55 parameters->FindParam(&dim,DomainDimensionEnum); 56 parameters->FindParam(&eps_f,DamageC1Enum); 57 parameters->FindParam(&sigma_0,DamageStressThresholdEnum); 58 59 /* Retrieve inputs */ 55 60 Input* eps_xx_input=this->GetInput(StrainRatexxEnum); _assert_(eps_xx_input); 56 61 Input* eps_yy_input=this->GetInput(StrainRateyyEnum); _assert_(eps_yy_input); … … 65 70 } 66 71 67 /* Start looping on the number of vertices: */ 72 /* Fetch number of nodes and allocate output*/ 73 int numnodes = this->GetNumberOfNodes(); 74 IssmDouble* newD = xNew<IssmDouble>(numnodes); 75 76 /* Retrieve domain-dependent inputs */ 77 Input* n_input=this->GetInput(MaterialsRheologyNEnum); _assert_(n_input); 78 Input* damage_input = NULL; 79 Input* B_input = NULL; 80 int domaintype; 81 parameters->FindParam(&domaintype,DomainTypeEnum); 82 if(domaintype==Domain2DhorizontalEnum){ 83 damage_input = this->GetInput(DamageDbarEnum); _assert_(damage_input); 84 B_input=this->GetInput(MaterialsRheologyBbarEnum); _assert_(B_input); 85 } 86 else{ 87 damage_input = this->GetInput(DamageDEnum); _assert_(damage_input); 88 B_input=this->GetInput(MaterialsRheologyBEnum); _assert_(B_input); 89 } 90 /* Get B and D inputs appropriate for the type of domain */ 91 /*n=this->material->GetN();*/ 92 /*if(domaintype==Domain2DhorizontalEnum){ 93 B=this->material->GetBbar(); 94 D=this->material->GetDbar(); 95 } 96 else{ 97 B=this->material->GetB(); 98 D=this->material->GetD(); 99 }*/ 100 101 /* Start looping on the number of nodes: */ 68 102 Gauss* gauss=this->NewGauss(); 69 int numvertices = this->GetNumberOfVertices(); 70 for (int iv=0;iv<numvertices;iv++){ 71 gauss->GaussVertex(iv); 103 for (int i=0;i<numnodes;i++){ 104 gauss->GaussNode(this->GetElementType(),i); 72 105 73 106 eps_xx_input->GetInputValue(&eps_xx,gauss); … … 82 115 83 116 /* eps_eff^2 = exx^2 + eyy^2 + exy^2 + exz^2 + eyz^2 + exx*eyy */ 84 eps_eff=sqrt(eps_xx*eps_xx+eps_yy*eps_yy+eps_xy*eps_xy+eps_xz*eps_xz+eps_yz*eps_yz+eps_xx*eps_xx*epsmin*epsmin); 85 86 /*TODO: compute kappa from initial D, then compute new D */ 87 88 } 89 90 /* TODO: add newdamage input to DamageEnum and NewDamageEnum */ 117 eps_eff=sqrt(eps_xx*eps_xx+eps_yy*eps_yy+eps_xy*eps_xy+eps_xz*eps_xz+eps_yz*eps_yz+eps_xx*eps_yy+epsmin*epsmin); 118 119 B_input->GetInputValue(&B,gauss); 120 n_input->GetInputValue(&n,gauss); 121 damage_input->GetInputValue(&D,gauss); 122 123 /* Compute kappa (k) from pre-existing level of damage, using Newton-Raphson */ 124 k1=exp(n*eps_0/(eps_f-eps_0)+n*log(1.-D)-log(eps_0)); /* initial guess */ 125 126 while(true){ 127 /*Newton step k2=k1-f(k1)/f'(k1) */ 128 k2=k1-(1.-D-pow(eps_0/k1,1./n)*exp(-(k1-eps_0)/(eps_f-eps_0)))/(pow(eps_0/k1,1./n)*exp(-(k1-eps_0)/(eps_f-eps_0))*(-1./(eps_f-eps_0)-1./n/k1)); 129 130 if( fabs(k2-k1)/(fabs(k2))<threshold ){ 131 break; 132 } 133 else{ 134 k1=k2; 135 counter++; 136 } 137 138 if(counter>50) break; 139 } 140 141 /* Compute threshold strain rate from threshold stress */ 142 eps_0=pow(sigma_0/B,n); 143 _assert_(eps_f>eps_0); 144 145 if(eps_eff>k2){ 146 newD[i]=1.-pow(eps_0/k2,1./n)*exp(-(k2-eps_0)/(eps_f-eps_0)); 147 } 148 else newD[i]=D; 149 } 150 151 /* Add new damage input to DamageEnum and NewDamageEnum */ 152 this->AddInput(NewDamageEnum,newD,this->GetElementType()); 153 if(domaintype==Domain2DhorizontalEnum){ 154 this->AddInput(DamageDbarEnum,newD,this->GetElementType()); 155 } 156 else{ 157 this->AddInput(DamageDEnum,newD,this->GetElementType()); 158 } 91 159 92 160 /*Clean up and return*/ 93 161 xDelete<IssmDouble>(xyz_list); 162 xDelete<IssmDouble>(newD); 94 163 delete gauss; 95 164
Note:
See TracChangeset
for help on using the changeset viewer.