[3683] | 1 | /*!\file Riftfront.cpp
|
---|
| 2 | * \brief: implementation of the Riftfront object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | /*Headers:*/
|
---|
[12365] | 6 | /*{{{*/
|
---|
[3683] | 7 | #ifdef HAVE_CONFIG_H
|
---|
[9320] | 8 | #include <config.h>
|
---|
[3683] | 9 | #else
|
---|
| 10 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[15012] | 13 | #include "shared/shared.h"
|
---|
| 14 | #include "modules/ModelProcessorx/ModelProcessorx.h"
|
---|
| 15 | #include "../classes.h"
|
---|
[3683] | 16 | /*}}}*/
|
---|
| 17 |
|
---|
[5938] | 18 | /*Element macros*/
|
---|
| 19 | #define NUMVERTICES 2
|
---|
| 20 |
|
---|
[4248] | 21 | /*Riftfront constructors and destructor*/
|
---|
[18301] | 22 | Riftfront::Riftfront(){/*{{{*/
|
---|
[3683] | 23 | this->parameters=NULL;
|
---|
[4396] | 24 | this->hnodes=NULL;
|
---|
| 25 | this->helements=NULL;
|
---|
| 26 | this->hmatpar=NULL;
|
---|
[5941] | 27 | this->nodes=NULL;
|
---|
| 28 | this->elements=NULL;
|
---|
| 29 | this->matpar=NULL;
|
---|
[3683] | 30 | }
|
---|
| 31 | /*}}}*/
|
---|
[18301] | 32 | Riftfront::Riftfront(int riftfront_id,int i, IoModel* iomodel,int riftfront_analysis_type){/*{{{*/
|
---|
[3683] | 33 |
|
---|
| 34 | /*data: */
|
---|
[16560] | 35 | const int RIFTINFOSIZE = 12;
|
---|
[3683] | 36 | int riftfront_node_ids[2];
|
---|
[4696] | 37 | int riftfront_elem_ids[2];
|
---|
[3683] | 38 | int riftfront_matpar_id;
|
---|
[12472] | 39 | IssmDouble riftfront_friction;
|
---|
| 40 | IssmDouble riftfront_fractionincrement;
|
---|
[9356] | 41 | int penalty_lock;
|
---|
[3683] | 42 |
|
---|
| 43 | /*intermediary: */
|
---|
| 44 | int el1 ,el2;
|
---|
[8303] | 45 | int node1 ,node2;
|
---|
[3683] | 46 |
|
---|
[9356] | 47 | /*Fetch parameters: */
|
---|
[16137] | 48 | iomodel->Constant(&penalty_lock,StressbalanceRiftPenaltyLockEnum);
|
---|
[9356] | 49 |
|
---|
[8303] | 50 | /*Ok, retrieve all the data needed to add a penalty between the two nodes: */
|
---|
[13073] | 51 | el1=reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+2));
|
---|
| 52 | el2=reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+3)) ;
|
---|
[3683] | 53 |
|
---|
[13073] | 54 | node1=reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+0));
|
---|
| 55 | node2=reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+1));
|
---|
[3683] | 56 |
|
---|
| 57 | /*id: */
|
---|
| 58 | this->id=riftfront_id;
|
---|
[4003] | 59 | this->analysis_type=riftfront_analysis_type;
|
---|
[3683] | 60 |
|
---|
| 61 | /*hooks: */
|
---|
[8303] | 62 | riftfront_node_ids[0]=iomodel->nodecounter+node1;
|
---|
| 63 | riftfront_node_ids[1]=iomodel->nodecounter+node2;
|
---|
[4696] | 64 | riftfront_elem_ids[0]=el1;
|
---|
| 65 | riftfront_elem_ids[1]=el2;
|
---|
[16137] | 66 | riftfront_matpar_id=iomodel->numberofelements+1; //matlab indexing
|
---|
[3683] | 67 |
|
---|
[5941] | 68 | /*Hooks: */
|
---|
[4396] | 69 | this->hnodes=new Hook(riftfront_node_ids,2);
|
---|
[4696] | 70 | this->helements=new Hook(riftfront_elem_ids,2);
|
---|
[4396] | 71 | this->hmatpar=new Hook(&riftfront_matpar_id,1);
|
---|
[3683] | 72 |
|
---|
| 73 | /*computational parameters: */
|
---|
| 74 | this->active=0;
|
---|
| 75 | this->frozen=0;
|
---|
| 76 | this->counter=0;
|
---|
| 77 | this->prestable=0;
|
---|
[9356] | 78 | this->penalty_lock=penalty_lock;
|
---|
[3683] | 79 | this->material_converged=0;
|
---|
[9619] | 80 | this->normal[0]=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+4);
|
---|
| 81 | this->normal[1]=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+5);
|
---|
| 82 | this->length=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+6);
|
---|
| 83 | this->fraction=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+9);
|
---|
[13073] | 84 | this->state=reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+11));
|
---|
[3683] | 85 |
|
---|
[17806] | 86 | //intialize properties
|
---|
| 87 | this->type=SegmentRiftfrontEnum;
|
---|
| 88 | this->fill = reCast<int,IssmDouble>(*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+7));
|
---|
| 89 | this->friction=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+8);
|
---|
| 90 | this->fractionincrement=*(iomodel->Data(RiftsRiftstructEnum)+RIFTINFOSIZE*i+10);
|
---|
| 91 | this->shelf=reCast<bool,IssmDouble>(iomodel->Data(MaskGroundediceLevelsetEnum)[node1-1]<0.);
|
---|
[13622] | 92 |
|
---|
[5941] | 93 | //parameters and hooked fields: we still can't point to them, they may not even exist. Configure will handle this.
|
---|
[3683] | 94 | this->parameters=NULL;
|
---|
[5941] | 95 | this->nodes= NULL;
|
---|
| 96 | this->elements= NULL;
|
---|
| 97 | this->matpar= NULL;
|
---|
[13622] | 98 |
|
---|
[3683] | 99 | }
|
---|
[12365] | 100 | /*}}}*/
|
---|
[18301] | 101 | Riftfront::~Riftfront(){/*{{{*/
|
---|
[3683] | 102 | this->parameters=NULL;
|
---|
[4396] | 103 | delete hnodes;
|
---|
[4696] | 104 | delete helements;
|
---|
[4396] | 105 | delete hmatpar;
|
---|
[3683] | 106 | }
|
---|
| 107 | /*}}}*/
|
---|
| 108 |
|
---|
[4248] | 109 | /*Object virtual functions definitions:*/
|
---|
[18301] | 110 | Object* Riftfront::copy() {/*{{{*/
|
---|
[13622] | 111 |
|
---|
[4248] | 112 | Riftfront* riftfront=NULL;
|
---|
[3683] | 113 |
|
---|
[4248] | 114 | riftfront=new Riftfront();
|
---|
[3683] | 115 |
|
---|
[4248] | 116 | /*copy fields: */
|
---|
| 117 | riftfront->id=this->id;
|
---|
| 118 | riftfront->analysis_type=this->analysis_type;
|
---|
[17806] | 119 | riftfront->type=this->type;
|
---|
| 120 | riftfront->fill=this->fill;
|
---|
| 121 | riftfront->friction=this->friction;
|
---|
| 122 | riftfront->fractionincrement=this->fractionincrement;
|
---|
| 123 | riftfront->shelf=this->shelf;
|
---|
| 124 |
|
---|
[4248] | 125 | /*point parameters: */
|
---|
| 126 | riftfront->parameters=this->parameters;
|
---|
[3683] | 127 |
|
---|
[4248] | 128 | /*now deal with hooks and objects: */
|
---|
[4396] | 129 | riftfront->hnodes=(Hook*)this->hnodes->copy();
|
---|
[4696] | 130 | riftfront->helements=(Hook*)this->helements->copy();
|
---|
[4396] | 131 | riftfront->hmatpar=(Hook*)this->hmatpar->copy();
|
---|
[3683] | 132 |
|
---|
[5941] | 133 | /*corresponding fields*/
|
---|
| 134 | riftfront->nodes =(Node**)riftfront->hnodes->deliverp();
|
---|
| 135 | riftfront->elements=(Element**)riftfront->helements->deliverp();
|
---|
| 136 | riftfront->matpar =(Matpar*)riftfront->hmatpar->delivers();
|
---|
| 137 |
|
---|
[5161] | 138 | /*internal data: */
|
---|
| 139 | riftfront->penalty_lock=this->penalty_lock;
|
---|
| 140 | riftfront->active=this->active;
|
---|
| 141 | riftfront->frozen=this->frozen;
|
---|
[6748] | 142 | riftfront->state=this->state;
|
---|
[5161] | 143 | riftfront->counter=this->counter;
|
---|
| 144 | riftfront->prestable=this->prestable;
|
---|
| 145 | riftfront->material_converged=this->material_converged;
|
---|
| 146 | riftfront->normal[0]=this->normal[0];
|
---|
| 147 | riftfront->normal[1]=this->normal[1];
|
---|
| 148 | riftfront->length=this->length;
|
---|
| 149 | riftfront->fraction=this->fraction;
|
---|
[13622] | 150 |
|
---|
[4248] | 151 | return riftfront;
|
---|
[3683] | 152 |
|
---|
| 153 | }
|
---|
[4248] | 154 | /*}}}*/
|
---|
[20500] | 155 | void Riftfront::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
|
---|
| 156 |
|
---|
| 157 | _assert_(this);
|
---|
| 158 |
|
---|
| 159 | /*ok, marshall operations: */
|
---|
| 160 | MARSHALLING_ENUM(RiftfrontEnum);
|
---|
| 161 | MARSHALLING(id);
|
---|
| 162 | MARSHALLING(analysis_type);
|
---|
| 163 | MARSHALLING(type);
|
---|
| 164 | MARSHALLING(fill);
|
---|
| 165 | MARSHALLING(friction);
|
---|
| 166 | MARSHALLING(fractionincrement);
|
---|
| 167 | MARSHALLING(shelf);
|
---|
| 168 |
|
---|
| 169 | if(marshall_direction==MARSHALLING_BACKWARD){
|
---|
| 170 | this->hnodes = new Hook();
|
---|
| 171 | this->hmatpar = new Hook();
|
---|
| 172 | this->helements = new Hook();
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | this->hnodes->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
|
---|
| 176 | this->hmatpar->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
|
---|
| 177 | this->helements->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
|
---|
| 178 |
|
---|
| 179 | /*corresponding fields*/
|
---|
| 180 | nodes =(Node**)this->hnodes->deliverp();
|
---|
| 181 | matpar =(Matpar*)this->hmatpar->delivers();
|
---|
| 182 | elements =(Element**)this->helements->deliverp();
|
---|
| 183 |
|
---|
| 184 | MARSHALLING(penalty_lock);
|
---|
| 185 | MARSHALLING(active);
|
---|
| 186 | MARSHALLING(frozen);
|
---|
| 187 | MARSHALLING(state);
|
---|
| 188 | MARSHALLING(counter);
|
---|
| 189 | MARSHALLING(prestable);
|
---|
| 190 | MARSHALLING(material_converged);
|
---|
| 191 | MARSHALLING(normal[0]);
|
---|
| 192 | MARSHALLING(normal[1]);
|
---|
| 193 | MARSHALLING(length);
|
---|
| 194 | MARSHALLING(fraction);
|
---|
| 195 |
|
---|
| 196 | }
|
---|
| 197 | /*}}}*/
|
---|
[19105] | 198 | void Riftfront::DeepEcho(void){/*{{{*/
|
---|
[13622] | 199 |
|
---|
[19105] | 200 | _printf_("Riftfront:\n");
|
---|
| 201 | _printf_(" id: " << id << "\n");
|
---|
| 202 | _printf_(" analysis_type: " << EnumToStringx(analysis_type) << "\n");
|
---|
| 203 | hnodes->DeepEcho();
|
---|
| 204 | helements->DeepEcho();
|
---|
| 205 | hmatpar->DeepEcho();
|
---|
| 206 | _printf_(" parameters\n");
|
---|
| 207 | if(parameters)parameters->DeepEcho();
|
---|
| 208 | }
|
---|
| 209 | /*}}}*/
|
---|
| 210 | void Riftfront::Echo(void){/*{{{*/
|
---|
| 211 |
|
---|
| 212 | _printf_("Riftfront:\n");
|
---|
| 213 | _printf_(" id: " << id << "\n");
|
---|
| 214 | _printf_(" analysis_type: " << EnumToStringx(analysis_type) << "\n");
|
---|
| 215 | _printf_(" hnodes: " << hnodes << "\n");
|
---|
| 216 | _printf_(" helements: " << helements << "\n");
|
---|
| 217 | _printf_(" hmatpar: " << hmatpar << "\n");
|
---|
| 218 | _printf_(" parameters: " << parameters << "\n");
|
---|
| 219 | _printf_(" internal parameters: \n");
|
---|
| 220 | _printf_(" normal: " << normal[0] << "|" << normal[1] << "\n");
|
---|
| 221 | _printf_(" length: " << length << "\n");
|
---|
| 222 | _printf_(" penalty_lock: " << penalty_lock << "\n");
|
---|
| 223 | _printf_(" active: " <<(active ? "true":"false") << "\n");
|
---|
| 224 | _printf_(" counter: " << counter << "\n");
|
---|
| 225 | _printf_(" prestable: " << (prestable ? "true":"false") << "\n");
|
---|
| 226 | _printf_(" material_converged: " << (material_converged ? "true":"false") << "\n");
|
---|
| 227 | _printf_(" fill: " << fill << "\n");
|
---|
| 228 | _printf_(" friction: " << friction << "\n");
|
---|
| 229 | _printf_(" fraction: " << fraction << "\n");
|
---|
| 230 | _printf_(" fractionincrement: " << fractionincrement << "\n");
|
---|
| 231 | _printf_(" state: " << state << "\n");
|
---|
| 232 | _printf_(" frozen: " << (frozen ? "true":"false") << "\n");
|
---|
| 233 |
|
---|
| 234 | }
|
---|
| 235 | /*}}}*/
|
---|
| 236 | int Riftfront::Id(void){ return id; }/*{{{*/
|
---|
| 237 | /*}}}*/
|
---|
| 238 | int Riftfront::ObjectEnum(void){/*{{{*/
|
---|
| 239 |
|
---|
| 240 | return RiftfrontEnum;
|
---|
| 241 |
|
---|
| 242 | }
|
---|
| 243 | /*}}}*/
|
---|
| 244 |
|
---|
[5161] | 245 | /*Update virtual functions definitions:*/
|
---|
[18301] | 246 | void Riftfront::InputUpdateFromConstant(bool constant,int name){/*{{{*/
|
---|
[5161] | 247 | }
|
---|
| 248 | /*}}}*/
|
---|
[18301] | 249 | void Riftfront::InputUpdateFromConstant(IssmDouble constant,int name){/*{{{*/
|
---|
[5161] | 250 |
|
---|
[5610] | 251 | }
|
---|
| 252 | /*}}}*/
|
---|
[18301] | 253 | void Riftfront::InputUpdateFromVector(IssmDouble* vector, int name, int type){/*{{{*/
|
---|
[5610] | 254 |
|
---|
[20500] | 255 | /*Nothing to update*/
|
---|
[5655] | 256 |
|
---|
| 257 | }
|
---|
| 258 | /*}}}*/
|
---|
| 259 |
|
---|
[4248] | 260 | /*Load virtual functions definitions:*/
|
---|
[18301] | 261 | void Riftfront::Configure(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){/*{{{*/
|
---|
[4248] | 262 |
|
---|
| 263 | /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective
|
---|
| 264 | * datasets, using internal ids and offsets hidden in hooks: */
|
---|
[4396] | 265 | hnodes->configure(nodesin);
|
---|
[4696] | 266 | helements->configure(elementsin);
|
---|
[4396] | 267 | hmatpar->configure(materialsin);
|
---|
[4248] | 268 |
|
---|
[5941] | 269 | /*Initialize hooked fields*/
|
---|
| 270 | this->nodes =(Node**)hnodes->deliverp();
|
---|
| 271 | this->elements=(Element**)helements->deliverp();
|
---|
| 272 | this->matpar =(Matpar*)hmatpar->delivers();
|
---|
| 273 |
|
---|
[4248] | 274 | /*point parameters to real dataset: */
|
---|
| 275 | this->parameters=parametersin;
|
---|
| 276 |
|
---|
| 277 | }
|
---|
| 278 | /*}}}*/
|
---|
[19105] | 279 | void Riftfront::CreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* Kfs){/*{{{*/
|
---|
| 280 | /*do nothing: */
|
---|
| 281 | return;
|
---|
| 282 | }
|
---|
| 283 | /*}}}*/
|
---|
| 284 | void Riftfront::CreatePVector(Vector<IssmDouble>* pf){/*{{{*/
|
---|
| 285 | /*do nothing: */
|
---|
| 286 | return;
|
---|
| 287 | }
|
---|
| 288 | /*}}}*/
|
---|
| 289 | void Riftfront::GetNodesLidList(int* lidlist){/*{{{*/
|
---|
[18301] | 290 |
|
---|
[19105] | 291 | _assert_(lidlist);
|
---|
| 292 | _assert_(nodes);
|
---|
[18301] | 293 |
|
---|
[19105] | 294 | for(int i=0;i<NUMVERTICES;i++) lidlist[i]=nodes[i]->Lid();
|
---|
| 295 | }
|
---|
| 296 | /*}}}*/
|
---|
| 297 | void Riftfront::GetNodesSidList(int* sidlist){/*{{{*/
|
---|
[18301] | 298 |
|
---|
[19105] | 299 | _assert_(sidlist);
|
---|
| 300 | _assert_(nodes);
|
---|
| 301 |
|
---|
| 302 | for(int i=0;i<NUMVERTICES;i++) sidlist[i]=nodes[i]->Sid();
|
---|
[18301] | 303 | }
|
---|
| 304 | /*}}}*/
|
---|
[19105] | 305 | int Riftfront::GetNumberOfNodes(void){/*{{{*/
|
---|
| 306 |
|
---|
| 307 | return NUMVERTICES;
|
---|
| 308 | }
|
---|
| 309 | /*}}}*/
|
---|
| 310 | bool Riftfront::InAnalysis(int in_analysis_type){/*{{{*/
|
---|
| 311 | if (in_analysis_type==this->analysis_type) return true;
|
---|
| 312 | else return false;
|
---|
| 313 | }
|
---|
| 314 | /*}}}*/
|
---|
[18301] | 315 | bool Riftfront::IsPenalty(void){/*{{{*/
|
---|
[13925] | 316 | return true;
|
---|
| 317 | }
|
---|
| 318 | /*}}}*/
|
---|
[18301] | 319 | void Riftfront::PenaltyCreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* Kfs,IssmDouble kmax){/*{{{*/
|
---|
[5938] | 320 |
|
---|
| 321 | /*Retrieve parameters: */
|
---|
| 322 | ElementMatrix* Ke=NULL;
|
---|
| 323 | int analysis_type;
|
---|
| 324 | this->parameters->FindParam(&analysis_type,AnalysisTypeEnum);
|
---|
| 325 |
|
---|
| 326 | switch(analysis_type){
|
---|
[16137] | 327 | case StressbalanceAnalysisEnum:
|
---|
| 328 | Ke=PenaltyCreateKMatrixStressbalanceHoriz(kmax);
|
---|
[5938] | 329 | break;
|
---|
| 330 | case AdjointHorizAnalysisEnum:
|
---|
[16137] | 331 | Ke=PenaltyCreateKMatrixStressbalanceHoriz(kmax);
|
---|
[5938] | 332 | break;
|
---|
| 333 | default:
|
---|
[13036] | 334 | _error_("analysis " << analysis_type << " (" << EnumToStringx(analysis_type) << ") not supported yet");
|
---|
[5938] | 335 | }
|
---|
| 336 |
|
---|
| 337 | /*Add to global Vector*/
|
---|
| 338 | if(Ke){
|
---|
[8800] | 339 | Ke->AddToGlobal(Kff,Kfs);
|
---|
[5938] | 340 | delete Ke;
|
---|
| 341 | }
|
---|
| 342 | }
|
---|
[12365] | 343 | /*}}}*/
|
---|
[18301] | 344 | void Riftfront::PenaltyCreatePVector(Vector<IssmDouble>* pf,IssmDouble kmax){/*{{{*/
|
---|
[5938] | 345 |
|
---|
| 346 | /*Retrieve parameters: */
|
---|
| 347 | ElementVector* pe=NULL;
|
---|
| 348 | int analysis_type;
|
---|
| 349 | this->parameters->FindParam(&analysis_type,AnalysisTypeEnum);
|
---|
| 350 |
|
---|
| 351 | switch(analysis_type){
|
---|
[16137] | 352 | case StressbalanceAnalysisEnum:
|
---|
| 353 | pe=PenaltyCreatePVectorStressbalanceHoriz(kmax);
|
---|
[5938] | 354 | break;
|
---|
| 355 | case AdjointHorizAnalysisEnum:
|
---|
| 356 | /*No penalty applied on load vector*/
|
---|
| 357 | break;
|
---|
| 358 | default:
|
---|
[13036] | 359 | _error_("analysis " << analysis_type << " (" << EnumToStringx(analysis_type) << ") not supported yet");
|
---|
[5938] | 360 | }
|
---|
| 361 |
|
---|
| 362 | /*Add to global Vector*/
|
---|
| 363 | if(pe){
|
---|
[8800] | 364 | pe->AddToGlobal(pf);
|
---|
[5938] | 365 | delete pe;
|
---|
| 366 | }
|
---|
| 367 | }
|
---|
[12365] | 368 | /*}}}*/
|
---|
[19105] | 369 | void Riftfront::ResetHooks(){/*{{{*/
|
---|
[13915] | 370 |
|
---|
[19105] | 371 | this->nodes=NULL;
|
---|
| 372 | this->elements=NULL;
|
---|
| 373 | this->matpar=NULL;
|
---|
| 374 | this->parameters=NULL;
|
---|
[13915] | 375 |
|
---|
[19105] | 376 | /*Get Element type*/
|
---|
| 377 | this->hnodes->reset();
|
---|
| 378 | this->helements->reset();
|
---|
| 379 | this->hmatpar->reset();
|
---|
[16137] | 380 |
|
---|
| 381 | }
|
---|
| 382 | /*}}}*/
|
---|
[19105] | 383 | void Riftfront::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){/*{{{*/
|
---|
[13915] | 384 |
|
---|
| 385 | }
|
---|
| 386 | /*}}}*/
|
---|
[18301] | 387 | void Riftfront::SetwiseNodeConnectivity(int* pd_nz,int* po_nz,Node* node,bool* flags,int* flagsindices,int set1_enum,int set2_enum){/*{{{*/
|
---|
[3683] | 388 |
|
---|
[13915] | 389 | /*Output */
|
---|
| 390 | int d_nz = 0;
|
---|
| 391 | int o_nz = 0;
|
---|
| 392 |
|
---|
| 393 | /*Loop over all nodes*/
|
---|
| 394 | for(int i=0;i<NUMVERTICES;i++){
|
---|
| 395 |
|
---|
[16137] | 396 | if(!flags[this->nodes[i]->Lid()]){
|
---|
[13915] | 397 |
|
---|
| 398 | /*flag current node so that no other element processes it*/
|
---|
[16137] | 399 | flags[this->nodes[i]->Lid()]=true;
|
---|
[13915] | 400 |
|
---|
[16137] | 401 | int counter=0;
|
---|
| 402 | while(flagsindices[counter]>=0) counter++;
|
---|
| 403 | flagsindices[counter]=this->nodes[i]->Lid();
|
---|
| 404 |
|
---|
[13915] | 405 | /*if node is clone, we have an off-diagonal non-zero, else it is a diagonal non-zero*/
|
---|
| 406 | switch(set2_enum){
|
---|
| 407 | case FsetEnum:
|
---|
| 408 | if(nodes[i]->indexing.fsize){
|
---|
| 409 | if(this->nodes[i]->IsClone())
|
---|
| 410 | o_nz += 1;
|
---|
| 411 | else
|
---|
| 412 | d_nz += 1;
|
---|
| 413 | }
|
---|
| 414 | break;
|
---|
| 415 | case GsetEnum:
|
---|
| 416 | if(nodes[i]->indexing.gsize){
|
---|
| 417 | if(this->nodes[i]->IsClone())
|
---|
| 418 | o_nz += 1;
|
---|
| 419 | else
|
---|
| 420 | d_nz += 1;
|
---|
| 421 | }
|
---|
| 422 | break;
|
---|
| 423 | case SsetEnum:
|
---|
| 424 | if(nodes[i]->indexing.ssize){
|
---|
| 425 | if(this->nodes[i]->IsClone())
|
---|
| 426 | o_nz += 1;
|
---|
| 427 | else
|
---|
| 428 | d_nz += 1;
|
---|
| 429 | }
|
---|
| 430 | break;
|
---|
| 431 | default: _error_("not supported");
|
---|
| 432 | }
|
---|
| 433 | }
|
---|
| 434 | }
|
---|
| 435 |
|
---|
| 436 | /*Assign output pointers: */
|
---|
| 437 | *pd_nz=d_nz;
|
---|
| 438 | *po_nz=o_nz;
|
---|
| 439 | }
|
---|
| 440 | /*}}}*/
|
---|
| 441 |
|
---|
[5938] | 442 | /*Riftfront numerics*/
|
---|
[18301] | 443 | ElementMatrix* Riftfront::PenaltyCreateKMatrixStressbalanceHoriz(IssmDouble kmax){/*{{{*/
|
---|
[5938] | 444 |
|
---|
| 445 | const int numdof = NDOF2*NUMVERTICES;
|
---|
[13761] | 446 | IssmDouble thickness;
|
---|
| 447 | IssmDouble h[2];
|
---|
| 448 | IssmDouble penalty_offset;
|
---|
[3683] | 449 |
|
---|
| 450 | /*Objects: */
|
---|
| 451 | Tria *tria1 = NULL;
|
---|
| 452 | Tria *tria2 = NULL;
|
---|
| 453 |
|
---|
| 454 | /*enum of element? */
|
---|
[13036] | 455 | if(elements[0]->ObjectEnum()!=TriaEnum)_error_("only Tria element allowed for Riftfront load!");
|
---|
[3683] | 456 | tria1=(Tria*)elements[0];
|
---|
| 457 | tria2=(Tria*)elements[1];
|
---|
| 458 |
|
---|
[5938] | 459 | /*Initialize Element Matrix*/
|
---|
| 460 | if(!this->active) return NULL;
|
---|
[5989] | 461 | ElementMatrix* Ke=new ElementMatrix(nodes,NUMVERTICES,this->parameters);
|
---|
[3683] | 462 |
|
---|
| 463 | /*Get some parameters: */
|
---|
[16137] | 464 | this->parameters->FindParam(&penalty_offset,StressbalancePenaltyFactorEnum);
|
---|
[10135] | 465 | tria1->GetInputValue(&h[0],nodes[0],ThicknessEnum);
|
---|
| 466 | tria2->GetInputValue(&h[1],nodes[1],ThicknessEnum);
|
---|
[13036] | 467 | if (h[0]!=h[1])_error_("different thicknesses not supported for rift fronts");
|
---|
[5938] | 468 | thickness=h[0];
|
---|
[3683] | 469 |
|
---|
[5938] | 470 | /*There is contact, we need to constrain the normal velocities (zero penetration), and the
|
---|
| 471 | *contact slip friction. */
|
---|
[3683] | 472 |
|
---|
[5938] | 473 | /*From Peter Wriggers book (Computational Contact Mechanics, p191): */
|
---|
| 474 | Ke->values[0*numdof+0]+= +pow(normal[0],2)*kmax*pow(10,penalty_offset);
|
---|
| 475 | Ke->values[0*numdof+1]+= +normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 476 | Ke->values[0*numdof+2]+= -pow(normal[0],2)*kmax*pow(10,penalty_offset);
|
---|
| 477 | Ke->values[0*numdof+3]+= -normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
[3683] | 478 |
|
---|
[5938] | 479 | Ke->values[1*numdof+0]+= +normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 480 | Ke->values[1*numdof+1]+= +pow(normal[1],2)*kmax*pow(10,penalty_offset);
|
---|
| 481 | Ke->values[1*numdof+2]+= -normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 482 | Ke->values[1*numdof+3]+= -pow(normal[1],2)*kmax*pow(10,penalty_offset);
|
---|
[3683] | 483 |
|
---|
[5938] | 484 | Ke->values[2*numdof+0]+= -pow(normal[0],2)*kmax*pow(10,penalty_offset);
|
---|
| 485 | Ke->values[2*numdof+1]+= -normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 486 | Ke->values[2*numdof+2]+= +pow(normal[0],2)*kmax*pow(10,penalty_offset);
|
---|
| 487 | Ke->values[2*numdof+3]+= +normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
[3683] | 488 |
|
---|
[5938] | 489 | Ke->values[3*numdof+0]+= -normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 490 | Ke->values[3*numdof+1]+= -pow(normal[1],2)*kmax*pow(10,penalty_offset);
|
---|
| 491 | Ke->values[3*numdof+2]+= +normal[0]*normal[1]*kmax*pow(10,penalty_offset);
|
---|
| 492 | Ke->values[3*numdof+3]+= +pow(normal[1],2)*kmax*pow(10,penalty_offset);
|
---|
[3683] | 493 |
|
---|
[5938] | 494 | /*Now take care of the friction: of type sigma=frictiontangent_velocity2-tangent_velocity1)*/
|
---|
| 495 |
|
---|
| 496 | Ke->values[0*numdof+0]+= +pow(normal[1],2)*thickness*length*friction;
|
---|
| 497 | Ke->values[0*numdof+1]+= -normal[0]*normal[1]*thickness*length*friction;
|
---|
| 498 | Ke->values[0*numdof+2]+= -pow(normal[1],2)*thickness*length*friction;
|
---|
| 499 | Ke->values[0*numdof+3]+= +normal[0]*normal[1]*thickness*length*friction;
|
---|
| 500 |
|
---|
| 501 | Ke->values[1*numdof+0]+= -normal[0]*normal[1]*thickness*length*friction;
|
---|
| 502 | Ke->values[1*numdof+1]+= +pow(normal[0],2)*thickness*length*friction;
|
---|
| 503 | Ke->values[1*numdof+2]+= +normal[0]*normal[1]*thickness*length*friction;
|
---|
| 504 | Ke->values[1*numdof+3]+= -pow(normal[0],2)*thickness*length*friction;
|
---|
| 505 |
|
---|
| 506 | Ke->values[2*numdof+0]+= -pow(normal[1],2)*thickness*length*friction;
|
---|
| 507 | Ke->values[2*numdof+1]+= +normal[0]*normal[1]*thickness*length*friction;
|
---|
| 508 | Ke->values[2*numdof+2]+= +pow(normal[1],2)*thickness*length*friction;
|
---|
| 509 | Ke->values[2*numdof+3]+= -normal[0]*normal[1]*thickness*length*friction;
|
---|
| 510 |
|
---|
| 511 | Ke->values[3*numdof+0]+= +normal[0]*normal[1]*thickness*length*friction;
|
---|
| 512 | Ke->values[3*numdof+1]+= -pow(normal[0],2)*thickness*length*friction;
|
---|
| 513 | Ke->values[3*numdof+2]+= -normal[0]*normal[1]*thickness*length*friction;
|
---|
| 514 | Ke->values[3*numdof+3]+= +pow(normal[0],2)*thickness*length*friction;
|
---|
| 515 |
|
---|
| 516 | /*Clean up and return*/
|
---|
| 517 | return Ke;
|
---|
[3683] | 518 | }
|
---|
[12365] | 519 | /*}}}*/
|
---|
[18301] | 520 | ElementVector* Riftfront::PenaltyCreatePVectorStressbalanceHoriz(IssmDouble kmax){/*{{{*/
|
---|
[3683] | 521 |
|
---|
[13787] | 522 | int j;
|
---|
| 523 | IssmDouble rho_ice;
|
---|
| 524 | IssmDouble rho_water;
|
---|
| 525 | IssmDouble gravity;
|
---|
| 526 | IssmDouble thickness;
|
---|
| 527 | IssmDouble h[2];
|
---|
| 528 | IssmDouble bed;
|
---|
| 529 | IssmDouble b[2];
|
---|
| 530 | IssmDouble pressure;
|
---|
| 531 | IssmDouble pressure_litho;
|
---|
| 532 | IssmDouble pressure_air;
|
---|
| 533 | IssmDouble pressure_melange;
|
---|
| 534 | IssmDouble pressure_water;
|
---|
[3683] | 535 |
|
---|
| 536 | /*Objects: */
|
---|
[13787] | 537 | Tria *tria1 = NULL;
|
---|
| 538 | Tria *tria2 = NULL;
|
---|
[3683] | 539 |
|
---|
| 540 | /*enum of element? */
|
---|
[13036] | 541 | if(elements[0]->ObjectEnum()!=TriaEnum)_error_("only Tria element allowed for Riftfront load!");
|
---|
[3683] | 542 | tria1=(Tria*)elements[0];
|
---|
| 543 | tria2=(Tria*)elements[1];
|
---|
| 544 |
|
---|
[5938] | 545 | /*Initialize Element Matrix*/
|
---|
| 546 | if(this->active) return NULL; /*The penalty is active. No loads implied here.*/
|
---|
[5986] | 547 | ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters);
|
---|
[3683] | 548 |
|
---|
| 549 | /*Get some inputs: */
|
---|
[19105] | 550 | rho_ice=matpar->GetMaterialParameter(MaterialsRhoIceEnum);
|
---|
| 551 | rho_water=matpar->GetMaterialParameter(MaterialsRhoSeawaterEnum);
|
---|
| 552 | gravity=matpar->GetMaterialParameter(ConstantsGEnum);
|
---|
[10135] | 553 | tria1->GetInputValue(&h[0],nodes[0],ThicknessEnum);
|
---|
| 554 | tria2->GetInputValue(&h[1],nodes[1],ThicknessEnum);
|
---|
[13036] | 555 | if (h[0]!=h[1])_error_("different thicknesses not supported for rift fronts");
|
---|
[5938] | 556 | thickness=h[0];
|
---|
[17806] | 557 | tria1->GetInputValue(&b[0],nodes[0],BaseEnum);
|
---|
| 558 | tria2->GetInputValue(&b[1],nodes[1],BaseEnum);
|
---|
[13036] | 559 | if (b[0]!=b[1])_error_("different beds not supported for rift fronts");
|
---|
[5938] | 560 | bed=b[0];
|
---|
[3683] | 561 |
|
---|
[5938] | 562 | /*Ok, this rift is opening. We should put loads on both sides of the rift flanks. Because we are dealing with contact mechanics,
|
---|
[8303] | 563 | * and we want to avoid zigzagging of the loads, we want lump the loads onto nodes, not onto surfaces between nodes.:*/
|
---|
[3683] | 564 |
|
---|
[8303] | 565 | /*Ok, to compute the pressure, we are going to need material properties, thickness and bed for the two nodes. We assume those properties to
|
---|
[5938] | 566 | * be the same across the rift.: */
|
---|
[3683] | 567 |
|
---|
[5938] | 568 | /*Ok, now compute the pressure (in norm) that is being applied to the flanks, depending on the type of fill: */
|
---|
| 569 | if(fill==WaterEnum){
|
---|
| 570 | if(shelf){
|
---|
| 571 | /*We are on an ice shelf, hydrostatic equilibrium is used to determine the pressure for water fill: */
|
---|
[16137] | 572 | pressure=rho_ice*gravity*pow(thickness,2)/2.- rho_water*gravity*pow(bed,2)/2.;
|
---|
[3683] | 573 | }
|
---|
[5938] | 574 | else{
|
---|
| 575 | //We are on an icesheet, we assume the water column fills the entire front: */
|
---|
[16137] | 576 | pressure=rho_ice*gravity*pow(thickness,2)/2.- rho_water*gravity*pow(thickness,2)/2.;
|
---|
[3683] | 577 | }
|
---|
[5938] | 578 | }
|
---|
| 579 | else if(fill==AirEnum){
|
---|
[16137] | 580 | pressure=rho_ice*gravity*pow(thickness,2)/2.; //icefront on an ice sheet, pressure imbalance ice vs air.
|
---|
[5938] | 581 | }
|
---|
| 582 | else if(fill==IceEnum){ //icefront finding itself against another icefront (pressure imbalance is fully compensated, ice vs ice)
|
---|
| 583 | pressure=0;
|
---|
| 584 | }
|
---|
| 585 | else if(fill==MelangeEnum){ //icefront finding itself against another icefront (pressure imbalance is fully compensated, ice vs ice)
|
---|
[3683] | 586 |
|
---|
[13036] | 587 | if(!shelf) _error_("fill type " << fill << " not supported on ice sheets yet.");
|
---|
[3683] | 588 |
|
---|
[16137] | 589 | pressure_litho=rho_ice*gravity*pow(thickness,2)/2.;
|
---|
[5938] | 590 | pressure_air=0;
|
---|
[16137] | 591 | pressure_melange=rho_ice*gravity*pow(fraction*thickness,2)/2.;
|
---|
[5938] | 592 | pressure_water=1.0/2.0*rho_water*gravity* ( pow(bed,2.0)-pow(rho_ice/rho_water*fraction*thickness,2.0) );
|
---|
[3683] | 593 |
|
---|
[5938] | 594 | pressure=pressure_litho-pressure_air-pressure_melange-pressure_water;
|
---|
[3683] | 595 | }
|
---|
| 596 | else{
|
---|
[13036] | 597 | _error_("fill type " << fill << " not supported yet.");
|
---|
[3683] | 598 | }
|
---|
[5096] | 599 |
|
---|
[8303] | 600 | /*Ok, add contribution to first node, along the normal i==0: */
|
---|
[5938] | 601 | for (j=0;j<2;j++){
|
---|
| 602 | pe->values[j]+=pressure*normal[j]*length;
|
---|
| 603 | }
|
---|
| 604 |
|
---|
[8303] | 605 | /*Add contribution to second node, along the opposite normal: i==1 */
|
---|
[5938] | 606 | for (j=0;j<2;j++){
|
---|
| 607 | pe->values[2+j]+= -pressure*normal[j]*length;
|
---|
| 608 | }
|
---|
| 609 |
|
---|
| 610 | /*Clean up and return*/
|
---|
| 611 | return pe;
|
---|
[3683] | 612 | }
|
---|
[12365] | 613 | /*}}}*/
|
---|
[4248] | 614 | #define _ZIGZAGCOUNTER_
|
---|
[18301] | 615 | int Riftfront::Constrain(int* punstable){/*{{{*/
|
---|
[4248] | 616 |
|
---|
[16560] | 617 | IssmDouble penetration;
|
---|
[17806] | 618 | bool activate;
|
---|
[4248] | 619 | int unstable;
|
---|
[16560] | 620 | IssmDouble vx1;
|
---|
| 621 | IssmDouble vy1;
|
---|
| 622 | IssmDouble vx2;
|
---|
| 623 | IssmDouble vy2;
|
---|
[4248] | 624 |
|
---|
| 625 | /*Objects: */
|
---|
[16560] | 626 | Tria *tria1 = NULL;
|
---|
| 627 | Tria *tria2 = NULL;
|
---|
[4248] | 628 |
|
---|
| 629 | /*enum of element? */
|
---|
[13036] | 630 | if(elements[0]->ObjectEnum()!=TriaEnum)_error_("only Tria element allowed for Riftfront load!");
|
---|
[4248] | 631 |
|
---|
| 632 | /*recover elements on both side of rift: */
|
---|
| 633 | tria1=(Tria*)elements[0];
|
---|
| 634 | tria2=(Tria*)elements[1];
|
---|
| 635 |
|
---|
| 636 | /*Is this constraint frozen? In which case we don't touch: */
|
---|
| 637 | if (this->frozen){
|
---|
| 638 | *punstable=0;
|
---|
| 639 | return 1;
|
---|
| 640 | }
|
---|
| 641 |
|
---|
[6748] | 642 | /*Is this rift segment state specified by user input? :*/
|
---|
| 643 | if (this->state==OpenEnum || this->state==ClosedEnum){
|
---|
| 644 |
|
---|
| 645 | if(this->state==OpenEnum)this->active=0;
|
---|
| 646 | if(this->state==ClosedEnum)this->active=1;
|
---|
[13622] | 647 |
|
---|
[6748] | 648 | /*this segment is like frozen, no instability here: */
|
---|
| 649 | *punstable=0;
|
---|
| 650 | return 1;
|
---|
| 651 | }
|
---|
| 652 |
|
---|
[4248] | 653 | /*First recover velocity: */
|
---|
[10135] | 654 | tria1->GetInputValue(&vx1,nodes[0],VxEnum);
|
---|
| 655 | tria2->GetInputValue(&vx2,nodes[1],VxEnum);
|
---|
| 656 | tria1->GetInputValue(&vy1,nodes[0],VyEnum);
|
---|
| 657 | tria2->GetInputValue(&vy2,nodes[1],VyEnum);
|
---|
[4248] | 658 |
|
---|
| 659 | /*Node 1 faces node 2, compute penetration of 2 into 1 (V2-V1).N (with N normal vector, and V velocity vector: */
|
---|
| 660 | penetration=(vx2-vx1)*normal[0]+(vy2-vy1)*normal[1];
|
---|
| 661 |
|
---|
| 662 | /*activation: */
|
---|
[17806] | 663 | if(penetration<0)activate=true;
|
---|
| 664 | else activate=false;
|
---|
[4248] | 665 |
|
---|
| 666 | /*Here, we try to avoid zigzaging. When a penalty activates and deactivates for more than penalty_lock times,
|
---|
| 667 | * we increase the fraction of melange:*/
|
---|
| 668 | if(this->counter>this->penalty_lock){
|
---|
| 669 | /*reset counter: */
|
---|
| 670 | this->counter=0;
|
---|
| 671 | /*increase melange fraction: */
|
---|
| 672 | this->fraction+=fractionincrement;
|
---|
[16137] | 673 | if (this->fraction>1)this->fraction=1.;
|
---|
[15100] | 674 | //_printf_("riftfront " << this->Id() << " fraction: " << this->fraction << "\n");
|
---|
[4248] | 675 | }
|
---|
| 676 |
|
---|
| 677 | //Figure out stability of this penalty
|
---|
| 678 | if(this->active==activate){
|
---|
| 679 | unstable=0;
|
---|
| 680 | }
|
---|
| 681 | else{
|
---|
| 682 | unstable=1;
|
---|
| 683 | this->counter++;
|
---|
| 684 | }
|
---|
| 685 |
|
---|
| 686 | //Set penalty flag
|
---|
| 687 | this->active=activate;
|
---|
| 688 |
|
---|
[15104] | 689 | //if ((penetration>0) && (this->active==1))_printf_("Riftfront " << Id() << " wants to be released\n");
|
---|
[4248] | 690 |
|
---|
| 691 | /*assign output pointer: */
|
---|
| 692 | *punstable=unstable;
|
---|
[11197] | 693 | return 1;
|
---|
[4248] | 694 | }
|
---|
[12365] | 695 | /*}}}*/
|
---|
[18301] | 696 | void Riftfront::FreezeConstraints(void){/*{{{*/
|
---|
[4248] | 697 |
|
---|
| 698 | /*Just set frozen flag to 1: */
|
---|
| 699 | this->frozen=1;
|
---|
| 700 |
|
---|
| 701 | }
|
---|
[12365] | 702 | /*}}}*/
|
---|
[18301] | 703 | bool Riftfront::IsFrozen(void){/*{{{*/
|
---|
[4248] | 704 |
|
---|
| 705 | /*Just set frozen flag to 1: */
|
---|
| 706 | if(this->frozen)return 1;
|
---|
| 707 | else return 0;
|
---|
| 708 | }
|
---|
[12365] | 709 | /*}}}*/
|
---|