Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
ElementMatrix Class Reference

#include <ElementMatrix.h>

Public Member Functions

 ElementMatrix ()
 
 ElementMatrix (ElementMatrix *Ke)
 
 ElementMatrix (ElementMatrix *Ke1, ElementMatrix *Ke2)
 
 ElementMatrix (ElementMatrix *Ke1, ElementMatrix *Ke2, ElementMatrix *Ke3)
 
 ElementMatrix (Node **nodes, int numnodes, Parameters *parameters, int approximation=NoneApproximationEnum)
 
 ~ElementMatrix ()
 
void AddDiagonalToGlobal (Vector< IssmDouble > *pf)
 
void AddToGlobal (Matrix< IssmDouble > *Kff, Matrix< IssmDouble > *Kfs)
 
void AddToGlobal (Matrix< IssmDouble > *Jff)
 
void CheckConsistency (void)
 
void Echo (void)
 
void Init (ElementMatrix *Ke)
 
void Lump (void)
 
void StaticCondensation (int numindices, int *indices)
 
void Transpose (void)
 

Data Fields

int nrows
 
int ncols
 
bool dofsymmetrical
 
IssmDoublevalues
 
int * gglobaldoflist
 
int row_fsize
 
int * row_flocaldoflist
 
int * row_fglobaldoflist
 
int row_ssize
 
int * row_slocaldoflist
 
int * row_sglobaldoflist
 
int col_fsize
 
int * col_flocaldoflist
 
int * col_fglobaldoflist
 
int col_ssize
 
int * col_slocaldoflist
 
int * col_sglobaldoflist
 

Detailed Description

Definition at line 19 of file ElementMatrix.h.

Constructor & Destructor Documentation

◆ ElementMatrix() [1/5]

ElementMatrix::ElementMatrix ( )

Definition at line 20 of file ElementMatrix.cpp.

20  {/*{{{*/
21 
22  this->nrows=0;
23  this->ncols=0;
24  this->values=NULL;
25  this->dofsymmetrical=false;
26 
27  this->row_fsize=0;
28  this->row_flocaldoflist=NULL;
29  this->row_fglobaldoflist=NULL;
30  this->row_ssize=0;
31  this->row_slocaldoflist=NULL;
32  this->row_sglobaldoflist=NULL;
33 
34  this->col_fsize=0;
35  this->col_flocaldoflist=NULL;
36  this->col_fglobaldoflist=NULL;
37  this->col_ssize=0;
38  this->col_slocaldoflist=NULL;
39  this->col_sglobaldoflist=NULL;
40 
41 }

◆ ElementMatrix() [2/5]

ElementMatrix::ElementMatrix ( ElementMatrix Ke)

Definition at line 43 of file ElementMatrix.cpp.

43  {/*{{{*/
44 
45  if(!Ke) _error_("Input Element Matrix is a NULL pointer");
46  this->Init(Ke);
47  return;
48 }

◆ ElementMatrix() [3/5]

ElementMatrix::ElementMatrix ( ElementMatrix Ke1,
ElementMatrix Ke2 
)

Definition at line 50 of file ElementMatrix.cpp.

50  {/*{{{*/
51 
52  /*intermediaries*/
53  int i,j,counter;
54  int gsize,fsize,ssize;
55  int* P=NULL;
56  bool found;
57 
58  /*If one of the two matrix is NULL, we copy the other one*/
59  if(!Ke1 && !Ke2){
60  _error_("Two input element matrices are NULL");
61  }
62  else if(!Ke1){
63  this->Init(Ke2);
64  return;
65  }
66  else if(!Ke2){
67  this->Init(Ke1);
68  return;
69  }
70 
71  /*General Case: Ke1 and Ke2 are not empty*/
72  if(!Ke1->dofsymmetrical || !Ke2->dofsymmetrical) _error_("merging 2 non dofsymmetrical matrices not implemented yet");
73 
74  /*Initialize itransformation matrix Ke[P[i]] = Ke2[i]*/
75  P=xNew<int>(Ke2->nrows);
76 
77  /*1: Get the new numbering of Ke2 and get size of the new matrix*/
78  gsize=Ke1->nrows;
79  for(i=0;i<Ke2->nrows;i++){
80  found=false;
81  for(j=0;j<Ke1->nrows;j++){
82  if(Ke2->gglobaldoflist[i]==Ke1->gglobaldoflist[j]){
83  found=true; P[i]=j; break;
84  }
85  }
86  if(!found){
87  P[i]=gsize; gsize++;
88  }
89  }
90 
91  /*2: Initialize static fields*/
92  this->nrows=gsize;
93  this->ncols=gsize;
94  this->dofsymmetrical=true;
95 
96  /*Gset and values*/
97  this->gglobaldoflist=xNew<int>(this->nrows);
98  this->values=xNewZeroInit<IssmDouble>(this->nrows*this->ncols);
99  for(i=0;i<Ke1->nrows;i++){
100  for(j=0;j<Ke1->ncols;j++){
101  this->values[i*this->ncols+j] += Ke1->values[i*Ke1->ncols+j];
102  }
103  this->gglobaldoflist[i]=Ke1->gglobaldoflist[i];
104  }
105  for(i=0;i<Ke2->nrows;i++){
106  for(j=0;j<Ke2->ncols;j++){
107  this->values[P[i]*this->ncols+P[j]] += Ke2->values[i*Ke2->ncols+j];
108  }
109  this->gglobaldoflist[P[i]]=Ke2->gglobaldoflist[i];
110  }
111 
112  /*Fset*/
113  fsize=Ke1->row_fsize;
114  for(i=0;i<Ke2->row_fsize;i++){
115  if(P[Ke2->row_flocaldoflist[i]] >= Ke1->nrows) fsize++;
116  }
117  this->row_fsize=fsize;
118  if(fsize){
119  this->row_flocaldoflist =xNew<int>(fsize);
120  this->row_fglobaldoflist=xNew<int>(fsize);
121  for(i=0;i<Ke1->row_fsize;i++){
122  this->row_flocaldoflist[i] =Ke1->row_flocaldoflist[i];
123  this->row_fglobaldoflist[i]=Ke1->row_fglobaldoflist[i];
124  }
125  counter=Ke1->row_fsize;
126  for(i=0;i<Ke2->row_fsize;i++){
127  if(P[Ke2->row_flocaldoflist[i]] >= Ke1->nrows){
128  this->row_flocaldoflist[counter] =P[Ke2->row_flocaldoflist[i]];
129  this->row_fglobaldoflist[counter]=Ke2->row_fglobaldoflist[i];
130  counter++;
131  }
132  }
133  }
134  else{
135  this->row_flocaldoflist=NULL;
136  this->row_fglobaldoflist=NULL;
137  }
138 
139  /*Sset*/
140  ssize=Ke1->row_ssize;
141  for(i=0;i<Ke2->row_ssize;i++){
142  if(P[Ke2->row_slocaldoflist[i]] >= Ke1->nrows) ssize++;
143  }
144  this->row_ssize=ssize;
145  if(ssize){
146  this->row_slocaldoflist =xNew<int>(ssize);
147  this->row_sglobaldoflist=xNew<int>(ssize);
148  for(i=0;i<Ke1->row_ssize;i++){
149  this->row_slocaldoflist[i] =Ke1->row_slocaldoflist[i];
150  this->row_sglobaldoflist[i]=Ke1->row_sglobaldoflist[i];
151  }
152  counter=Ke1->row_ssize;
153  for(i=0;i<Ke2->row_ssize;i++){
154  if(P[Ke2->row_slocaldoflist[i]] >= Ke1->nrows){
155  this->row_slocaldoflist[counter] =P[Ke2->row_slocaldoflist[i]];
156  this->row_sglobaldoflist[counter]=Ke2->row_sglobaldoflist[i];
157  counter++;
158  }
159  }
160  }
161  else{
162  this->row_slocaldoflist=NULL;
163  this->row_sglobaldoflist=NULL;
164  }
165 
166  /*don't do cols, we can pick them up from the rows: */
167  this->col_fsize=0;
168  this->col_flocaldoflist=NULL;
169  this->col_fglobaldoflist=NULL;
170  this->col_ssize=0;
171  this->col_slocaldoflist=NULL;
172  this->col_sglobaldoflist=NULL;
173 
174  /*clean-up*/
175  xDelete<int>(P);
176 }

◆ ElementMatrix() [4/5]

ElementMatrix::ElementMatrix ( ElementMatrix Ke1,
ElementMatrix Ke2,
ElementMatrix Ke3 
)

Definition at line 178 of file ElementMatrix.cpp.

178  {/*{{{*/
179 
180  /*Concatenate all matrices*/
181  ElementMatrix* Ke12 =new ElementMatrix(Ke1,Ke2);
182  ElementMatrix* Ke123=new ElementMatrix(Ke12,Ke3);
183 
184  /*Initialize current object with this matrix*/
185  this->Init(Ke123);
186 
187  /*clean-up*/
188  delete Ke12;
189  delete Ke123;
190 }

◆ ElementMatrix() [5/5]

ElementMatrix::ElementMatrix ( Node **  nodes,
int  numnodes,
Parameters parameters,
int  approximation = NoneApproximationEnum 
)

Definition at line 192 of file ElementMatrix.cpp.

192  {/*{{{*/
193 
194  /*get Matrix size and properties*/
195  this->dofsymmetrical=true;
196  this->nrows=GetNumberOfDofs(nodes,numnodes,GsetEnum,approximation);
197  this->ncols=this->nrows;
198 
199  /*fill values with 0: */
200  this->values=xNewZeroInit<IssmDouble>(this->nrows*this->ncols);
201 
202  /*g list*/
203  this->gglobaldoflist=GetGlobalDofList(nodes,numnodes,GsetEnum,approximation);
204 
205  /*get dof lists for f and s set: */
206  this->row_fsize=GetNumberOfDofs(nodes,numnodes,FsetEnum,approximation);
207  this->row_flocaldoflist =GetLocalDofList( nodes,numnodes,FsetEnum,approximation);
208  this->row_fglobaldoflist=GetGlobalDofList(nodes,numnodes,FsetEnum,approximation);
209  this->row_ssize=GetNumberOfDofs(nodes,numnodes,SsetEnum,approximation);
210  this->row_slocaldoflist =GetLocalDofList( nodes,numnodes,SsetEnum,approximation);
211  this->row_sglobaldoflist=GetGlobalDofList(nodes,numnodes,SsetEnum,approximation);
212 
213  /*Because this matrix is "dofsymmetrical" don't do cols, we can pick them up from the rows: */
214  this->col_fsize=0;
215  this->col_flocaldoflist=NULL;
216  this->col_fglobaldoflist=NULL;
217  this->col_ssize=0;
218  this->col_slocaldoflist=NULL;
219  this->col_sglobaldoflist=NULL;
220 }

◆ ~ElementMatrix()

ElementMatrix::~ElementMatrix ( )

Definition at line 222 of file ElementMatrix.cpp.

222  {/*{{{*/
223 
224  xDelete<IssmDouble>(this->values);
225  xDelete<int>(this->gglobaldoflist);
226  xDelete<int>(this->row_flocaldoflist);
227  xDelete<int>(this->row_fglobaldoflist);
228  xDelete<int>(this->row_slocaldoflist);
229  xDelete<int>(this->row_sglobaldoflist);
230  xDelete<int>(this->col_flocaldoflist);
231  xDelete<int>(this->col_fglobaldoflist);
232  xDelete<int>(this->col_slocaldoflist);
233  xDelete<int>(this->col_sglobaldoflist);
234 }

Member Function Documentation

◆ AddDiagonalToGlobal()

void ElementMatrix::AddDiagonalToGlobal ( Vector< IssmDouble > *  pf)

Definition at line 238 of file ElementMatrix.cpp.

238  {/*{{{*/
239 
240  IssmDouble* localvalues=NULL;
241 
242  /*Check that pf is not NULL*/
243  _assert_(pf);
244 
245  /*In debugging mode, check consistency (no NaN, and values not too big)*/
246  this->CheckConsistency();
247 
248  if(this->dofsymmetrical){
249  /*only use row dofs to add values into global matrices: */
250 
251  if(this->row_fsize){
252  /*first, retrieve values that are in the f-set from the g-set values matrix: */
253  localvalues=xNew<IssmDouble>(this->row_fsize);
254  for(int i=0;i<this->row_fsize;i++){
255  localvalues[i] = this->values[this->ncols*this->row_flocaldoflist[i]+ this->row_flocaldoflist[i]];
256  }
257 
258  /*add local values into global matrix, using the fglobaldoflist: */
259  pf->SetValues(this->row_fsize,this->row_fglobaldoflist,localvalues,ADD_VAL);
260 
261  /*Free ressources:*/
262  xDelete<IssmDouble>(localvalues);
263  }
264  }
265  else{
266  _error_("non dofsymmetrical matrix AddToGlobal routine not support yet!");
267  }
268 
269 }

◆ AddToGlobal() [1/2]

void ElementMatrix::AddToGlobal ( Matrix< IssmDouble > *  Kff,
Matrix< IssmDouble > *  Kfs 
)

Definition at line 271 of file ElementMatrix.cpp.

271  {/*{{{*/
272 
273  int i,j;
274  IssmDouble* localvalues=NULL;
275 
276  /*Check that Kff has been alocated in debugging mode*/
277  _assert_(Kff);
278 
279  /*If Kfs is not provided, call the other function*/
280  if(!Kfs){
281  this->AddToGlobal(Kff);
282  return;
283  }
284 
285  /*In debugging mode, check consistency (no NaN, and values not too big)*/
286  this->CheckConsistency();
287 
288  if(this->dofsymmetrical){
289  /*only use row dofs to add values into global matrices: */
290 
291  if(this->row_fsize){
292  /*first, retrieve values that are in the f-set from the g-set values matrix: */
293  localvalues=xNew<IssmDouble>(this->row_fsize*this->row_fsize);
294  for(i=0;i<this->row_fsize;i++){
295  for(j=0;j<this->row_fsize;j++){
296  localvalues[this->row_fsize*i+j]=this->values[this->ncols*this->row_flocaldoflist[i]+this->row_flocaldoflist[j]];
297  }
298  }
299 
300  /*add local values into global matrix, using the fglobaldoflist: */
301  Kff->SetValues(this->row_fsize,this->row_fglobaldoflist,this->row_fsize,this->row_fglobaldoflist,localvalues,ADD_VAL);
302 
303  /*Free ressources:*/
304  xDelete<IssmDouble>(localvalues);
305  }
306 
307  if((this->row_ssize!=0) && (this->row_fsize!=0)){
308  /*first, retrieve values that are in the f and s-set from the g-set values matrix: */
309  localvalues=xNew<IssmDouble>(this->row_fsize*this->row_ssize);
310  for(i=0;i<this->row_fsize;i++){
311  for(j=0;j<this->row_ssize;j++){
312  localvalues[this->row_ssize*i+j]=this->values[this->ncols*this->row_flocaldoflist[i]+this->row_slocaldoflist[j]];
313  }
314  }
315  /*add local values into global matrix, using the fglobaldoflist: */
316  Kfs->SetValues(this->row_fsize,this->row_fglobaldoflist,this->row_ssize,this->row_sglobaldoflist,localvalues,ADD_VAL);
317 
318  /*Free ressources:*/
319  xDelete<IssmDouble>(localvalues);
320  }
321  }
322  else{
323  _error_("non dofsymmetrical matrix AddToGlobal routine not support yet!");
324  }
325 
326 }

◆ AddToGlobal() [2/2]

void ElementMatrix::AddToGlobal ( Matrix< IssmDouble > *  Jff)

Definition at line 328 of file ElementMatrix.cpp.

328  {/*{{{*/
329 
330  int i,j;
331  IssmDouble* localvalues=NULL;
332 
333  /*Check that Jff is not NULL*/
334  _assert_(Jff);
335 
336  /*In debugging mode, check consistency (no NaN, and values not too big)*/
337  this->CheckConsistency();
338 
339  if(this->dofsymmetrical){
340  /*only use row dofs to add values into global matrices: */
341 
342  if(this->row_fsize){
343  /*first, retrieve values that are in the f-set from the g-set values matrix: */
344  localvalues=xNew<IssmDouble>(this->row_fsize*this->row_fsize);
345  for(i=0;i<this->row_fsize;i++){
346  for(j=0;j<this->row_fsize;j++){
347  *(localvalues+this->row_fsize*i+j)=*(this->values+this->ncols*this->row_flocaldoflist[i]+this->row_flocaldoflist[j]);
348  }
349  }
350  /*add local values into global matrix, using the fglobaldoflist: */
351  Jff->SetValues(this->row_fsize,this->row_fglobaldoflist,this->row_fsize,this->row_fglobaldoflist,localvalues,ADD_VAL);
352 
353  /*Free ressources:*/
354  xDelete<IssmDouble>(localvalues);
355  }
356 
357  }
358  else{
359  _error_("non dofsymmetrical matrix AddToGlobal routine not support yet!");
360  }
361 
362 }

◆ CheckConsistency()

void ElementMatrix::CheckConsistency ( void  )

Definition at line 364 of file ElementMatrix.cpp.

364  {/*{{{*/
365  /*Check element matrix values, only in debugging mode*/
366  #ifdef _ISSM_DEBUG_
367  for (int i=0;i<this->nrows;i++){
368  for(int j=0;j<this->ncols;j++){
369  if (xIsNan<IssmDouble>(this->values[i*this->ncols+j])) _error_("NaN found in Element Matrix");
370  if (xIsInf<IssmDouble>(this->values[i*this->ncols+j])) _error_("Inf found in Element Matrix");
371  if (fabs(this->values[i*this->ncols+j])>1.e+50) _error_("Element Matrix values exceeds 1.e+50");
372  }
373  }
374  #endif
375 }

◆ Echo()

void ElementMatrix::Echo ( void  )

Definition at line 377 of file ElementMatrix.cpp.

377  {/*{{{*/
378 
379  int i,j;
380  _printf_("Element Matrix echo:\n");
381  _printf_(" nrows: " << this->nrows << "\n");
382  _printf_(" ncols: " << this->ncols << "\n");
383  _printf_(" dofsymmetrical: " << (dofsymmetrical?"true":"false") << "\n");
384 
385  _printf_(" values:\n");
386  for(i=0;i<nrows;i++){
387  _printf_(setw(4) << right << i << ": ");
388  for(j=0;j<ncols;j++) _printf_( " " << setw(11) << setprecision (5) << right << values[i*ncols+j]);
389  _printf_("\n");
390  }
391 
392  _printf_(" gglobaldoflist (" << gglobaldoflist << "): ");
393  if(gglobaldoflist) for(i=0;i<nrows;i++) _printf_(" " << gglobaldoflist[i]); _printf_("\n");
394 
395  _printf_(" row_fsize: " << row_fsize << "\n");
396  _printf_(" row_flocaldoflist (" << row_flocaldoflist << "): ");
397  if(row_flocaldoflist) for(i=0;i<row_fsize;i++) _printf_(" " << row_flocaldoflist[i] ); _printf_(" \n");
398  _printf_(" row_fglobaldoflist (" << row_fglobaldoflist << "): ");
399  if(row_fglobaldoflist) for(i=0;i<row_fsize;i++)_printf_(" " << row_fglobaldoflist[i]); _printf_(" \n");
400 
401  _printf_(" row_ssize: " << row_ssize << "\n");
402  _printf_(" row_slocaldoflist (" << row_slocaldoflist << "): ");
403  if(row_slocaldoflist) for(i=0;i<row_ssize;i++) _printf_(" " << row_slocaldoflist[i] ); _printf_(" \n");
404  _printf_(" row_sglobaldoflist (" << row_sglobaldoflist << "): ");
405  if(row_sglobaldoflist) for(i=0;i<row_ssize;i++)_printf_(" " << row_sglobaldoflist[i]); _printf_(" \n");
406 
407  if(!dofsymmetrical){
408  _printf_(" col_fsize: " << col_fsize << "\n");
409  _printf_(" col_flocaldoflist (" << col_flocaldoflist << "): ");
410  if(col_flocaldoflist) for(i=0;i<col_fsize;i++) _printf_(" " << col_flocaldoflist[i] ); _printf_(" \n");
411  _printf_(" col_fglobaldoflist (" << col_fglobaldoflist << "): ");
412  if(col_fglobaldoflist) for(i=0;i<col_fsize;i++)_printf_(" " << col_fglobaldoflist[i]); _printf_(" \n");
413 
414  _printf_(" col_ssize: " << col_ssize << "\n");
415  _printf_(" col_slocaldoflist (" << col_slocaldoflist << "): ");
416  if(col_slocaldoflist) for(i=0;i<col_ssize;i++) _printf_(" " << col_slocaldoflist[i] ); _printf_(" \n");
417  _printf_(" col_sglobaldoflist (" << col_sglobaldoflist << "): ");
418  if(col_sglobaldoflist) for(i=0;i<col_ssize;i++)_printf_(" " << col_sglobaldoflist[i]); _printf_(" \n");
419  }
420 }

◆ Init()

void ElementMatrix::Init ( ElementMatrix Ke)

Definition at line 422 of file ElementMatrix.cpp.

422  {/*{{{*/
423 
424  _assert_(Ke);
425  _assert_(this);
426 
427  this->nrows =Ke->nrows;
428  this->ncols =Ke->ncols;
429  this->dofsymmetrical=Ke->dofsymmetrical;
430 
431  this->values=xNew<IssmDouble>(this->nrows*this->ncols);
432  xMemCpy<IssmDouble>(this->values,Ke->values,this->nrows*this->ncols);
433 
434  this->gglobaldoflist=xNew<int>(this->nrows);
435  xMemCpy<int>(this->gglobaldoflist,Ke->gglobaldoflist,this->nrows);
436 
437  this->row_fsize=Ke->row_fsize;
438  if(this->row_fsize){
439  this->row_flocaldoflist=xNew<int>(this->row_fsize);
440  xMemCpy<int>(this->row_flocaldoflist,Ke->row_flocaldoflist,this->row_fsize);
441  this->row_fglobaldoflist=xNew<int>(this->row_fsize);
442  xMemCpy<int>(this->row_fglobaldoflist,Ke->row_fglobaldoflist,this->row_fsize);
443  }
444  else{
445  this->row_flocaldoflist=NULL;
446  this->row_fglobaldoflist=NULL;
447  }
448 
449  this->row_ssize=Ke->row_ssize;
450  if(this->row_ssize){
451  this->row_slocaldoflist=xNew<int>(this->row_ssize);
452  xMemCpy<int>(this->row_slocaldoflist,Ke->row_slocaldoflist,this->row_ssize);
453  this->row_sglobaldoflist=xNew<int>(this->row_ssize);
454  xMemCpy<int>(this->row_sglobaldoflist,Ke->row_sglobaldoflist,this->row_ssize);
455  }
456  else{
457  this->row_slocaldoflist=NULL;
458  this->row_sglobaldoflist=NULL;
459  }
460 
461  this->col_fsize=Ke->col_fsize;
462  if(this->col_fsize){
463  this->col_flocaldoflist=xNew<int>(this->col_fsize);
464  xMemCpy<int>(this->col_flocaldoflist,Ke->col_flocaldoflist,this->col_fsize);
465  this->col_fglobaldoflist=xNew<int>(this->col_fsize);
466  xMemCpy<int>(this->col_fglobaldoflist,Ke->col_fglobaldoflist,this->col_fsize);
467  }
468  else{
469  this->col_flocaldoflist=NULL;
470  this->col_fglobaldoflist=NULL;
471  }
472 
473  this->col_ssize=Ke->col_ssize;
474  if(this->col_ssize){
475  this->col_slocaldoflist=xNew<int>(this->col_ssize);
476  xMemCpy<int>(this->col_slocaldoflist,Ke->col_slocaldoflist,this->col_ssize);
477  this->col_sglobaldoflist=xNew<int>(this->col_ssize);
478  xMemCpy<int>(this->col_sglobaldoflist,Ke->col_sglobaldoflist,this->col_ssize);
479  }
480  else{
481  this->col_slocaldoflist=NULL;
482  this->col_sglobaldoflist=NULL;
483  }
484 }

◆ Lump()

void ElementMatrix::Lump ( void  )

Definition at line 486 of file ElementMatrix.cpp.

486  {/*{{{*/
487 
488  if(!dofsymmetrical) _error_("not supported yet");
489 
490  for(int i=0;i<this->nrows;i++){
491  for(int j=0;j<this->ncols;j++){
492  if(i!=j){
493  this->values[i*this->ncols+i] += this->values[i*this->ncols+j];
494  this->values[i*this->ncols+j] = 0.;
495  }
496  }
497  }
498 
499  return;
500 }

◆ StaticCondensation()

void ElementMatrix::StaticCondensation ( int  numindices,
int *  indices 
)

Definition at line 524 of file ElementMatrix.cpp.

524  {/*{{{*/
525  /*
526  * | Kii Kib | | Ui | |Fi|
527  * | Kbi Kbb | | Ub | = |Fb|
528  *
529  * Kii Ui + Kib Ub = Fi
530  * Kbi Ui + Kbb Ub = Fb
531  *
532  * We want to remove Ub from the equation:
533  *
534  * Kii Ui + Kib inv(Kbb) (Fb - Kbi Ui) = Fi
535  *
536  * which gives:
537  *
538  * (Kii - Kib inv(Kbb) Kbi) Ui = Fi - Kib inv(Kbb) Fb
539  */
540 
541  /*Checks in debugging mode*/
542  _assert_(this->nrows==this->ncols && bsize>0 && bsize<this->ncols && this->values);
543 
544  /*Intermediaries*/
545  int counter,i,j,isize;
546  IssmDouble *Kii = NULL;
547  IssmDouble *Kib = NULL;
548  IssmDouble *Kbi = NULL;
549  IssmDouble *Kbb = NULL;
550  IssmDouble *Kbbinv = NULL;
551  IssmDouble *Ktemp = NULL;
552  int *iindices = NULL;
553  bool flag;
554 
555  /*Get new sizes and indices*/
556  isize = this->nrows - bsize;
557  iindices = xNew<int>(isize);
558  counter = 0;
559  for(i=0;i<this->nrows;i++){
560  flag = true;
561  for(j=0;j<bsize;j++){
562  if(i==bindices[j]){
563  flag = false;
564  break;
565  }
566  }
567  if(flag){
568  _assert_(counter<isize);
569  iindices[counter++] = i;
570  }
571  }
572  _assert_(counter == isize);
573 
574  /*Get submatrices*/
575  Kii = xNew<IssmDouble>(isize*isize);
576  Kib = xNew<IssmDouble>(isize*bsize);
577  Kbi = xNew<IssmDouble>(bsize*isize);
578  Kbb = xNew<IssmDouble>(bsize*bsize);
579  for(i=0;i<isize;i++) for(j=0;j<isize;j++) Kii[i*isize+j] = this->values[iindices[i]*this->ncols + iindices[j]];
580  for(i=0;i<isize;i++) for(j=0;j<bsize;j++) Kib[i*bsize+j] = this->values[iindices[i]*this->ncols + bindices[j]];
581  for(i=0;i<bsize;i++) for(j=0;j<isize;j++) Kbi[i*isize+j] = this->values[bindices[i]*this->ncols + iindices[j]];
582  for(i=0;i<bsize;i++) for(j=0;j<bsize;j++) Kbb[i*bsize+j] = this->values[bindices[i]*this->ncols + bindices[j]];
583 
584  /*Invert Kbb*/
585  Kbbinv = xNew<IssmDouble>(bsize*bsize);
586  switch(bsize){
587  case 1:
588  Kbbinv[0] = 1./Kbb[0];
589  break;
590  case 2:
591  Matrix2x2Invert(Kbbinv,Kbb);
592  break;
593  case 3:
594  Matrix3x3Invert(Kbbinv,Kbb);
595  break;
596  default:
597  MatrixInverse(Kbbinv,bsize,bsize,NULL,0,NULL);
598  break;
599  }
600 
601  /*Calculate Kib inv(Kbb) Kbi*/
602  Ktemp = xNew<IssmDouble>(isize*isize);
603  TripleMultiply(Kib,isize,bsize,0, Kbbinv,bsize,bsize,0, Kbi,bsize,isize,0, Ktemp,0);
604 
605  /*New Ke*/
606  for(i=0;i<isize*isize;i++) Ktemp[i] = Kii[i] - Ktemp[i];
607 
608  /*Update matrix values*/
609  for(i=0;i<this->nrows*this->ncols;i++) this->values[i]=0.;
610  for(i=0;i<isize;i++){
611  for(j=0;j<isize;j++){
612  this->values[iindices[i]*this->ncols + iindices[j]] = Ktemp[i*isize+j];
613  }
614  }
615 
616  /*Clean up and return*/
617  xDelete<IssmDouble>(Kii);
618  xDelete<IssmDouble>(Kib);
619  xDelete<IssmDouble>(Kbi);
620  xDelete<IssmDouble>(Kbb);
621  xDelete<IssmDouble>(Kbbinv);
622  xDelete<IssmDouble>(Ktemp);
623  xDelete<int>(iindices);
624  return;
625 }

◆ Transpose()

void ElementMatrix::Transpose ( void  )

Definition at line 502 of file ElementMatrix.cpp.

502  {/*{{{*/
503 
504  /*Intermediaries*/
505  ElementMatrix* Ke_copy=new ElementMatrix(this);
506 
507  /*Update sizes*/
508  this->nrows=Ke_copy->ncols;
509  this->ncols=Ke_copy->nrows;
510 
511  /*Transpose values*/
512  for (int i=0;i<this->nrows;i++) for(int j=0;j<this->ncols;j++) this->values[i*this->ncols+j]=Ke_copy->values[j*Ke_copy->ncols+i];
513 
514  /*Transpose indices*/
515  if(!dofsymmetrical){
516  _error_("not supported yet");
517  }
518 
519  /*Clean up and return*/
520  delete Ke_copy;
521  return;
522 }

Field Documentation

◆ nrows

int ElementMatrix::nrows

Definition at line 23 of file ElementMatrix.h.

◆ ncols

int ElementMatrix::ncols

Definition at line 24 of file ElementMatrix.h.

◆ dofsymmetrical

bool ElementMatrix::dofsymmetrical

Definition at line 25 of file ElementMatrix.h.

◆ values

IssmDouble* ElementMatrix::values

Definition at line 26 of file ElementMatrix.h.

◆ gglobaldoflist

int* ElementMatrix::gglobaldoflist

Definition at line 29 of file ElementMatrix.h.

◆ row_fsize

int ElementMatrix::row_fsize

Definition at line 33 of file ElementMatrix.h.

◆ row_flocaldoflist

int* ElementMatrix::row_flocaldoflist

Definition at line 34 of file ElementMatrix.h.

◆ row_fglobaldoflist

int* ElementMatrix::row_fglobaldoflist

Definition at line 35 of file ElementMatrix.h.

◆ row_ssize

int ElementMatrix::row_ssize

Definition at line 37 of file ElementMatrix.h.

◆ row_slocaldoflist

int* ElementMatrix::row_slocaldoflist

Definition at line 38 of file ElementMatrix.h.

◆ row_sglobaldoflist

int* ElementMatrix::row_sglobaldoflist

Definition at line 39 of file ElementMatrix.h.

◆ col_fsize

int ElementMatrix::col_fsize

Definition at line 43 of file ElementMatrix.h.

◆ col_flocaldoflist

int* ElementMatrix::col_flocaldoflist

Definition at line 44 of file ElementMatrix.h.

◆ col_fglobaldoflist

int* ElementMatrix::col_fglobaldoflist

Definition at line 45 of file ElementMatrix.h.

◆ col_ssize

int ElementMatrix::col_ssize

Definition at line 47 of file ElementMatrix.h.

◆ col_slocaldoflist

int* ElementMatrix::col_slocaldoflist

Definition at line 48 of file ElementMatrix.h.

◆ col_sglobaldoflist

int* ElementMatrix::col_sglobaldoflist

Definition at line 49 of file ElementMatrix.h.


The documentation for this class was generated from the following files:
ElementMatrix::gglobaldoflist
int * gglobaldoflist
Definition: ElementMatrix.h:29
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
ElementMatrix::col_slocaldoflist
int * col_slocaldoflist
Definition: ElementMatrix.h:48
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
MatrixInverse
int MatrixInverse(IssmDouble *a, int ndim, int nrow, IssmDouble *b, int nvec, IssmDouble *pdet)
Definition: MatrixUtils.cpp:149
ElementMatrix::row_slocaldoflist
int * row_slocaldoflist
Definition: ElementMatrix.h:38
ElementMatrix::col_fsize
int col_fsize
Definition: ElementMatrix.h:43
ADD_VAL
@ ADD_VAL
Definition: toolkitsenums.h:14
Matrix2x2Invert
void Matrix2x2Invert(IssmDouble *Ainv, IssmDouble *A)
Definition: MatrixUtils.cpp:329
TripleMultiply
int TripleMultiply(IssmDouble *a, int nrowa, int ncola, int itrna, IssmDouble *b, int nrowb, int ncolb, int itrnb, IssmDouble *c, int nrowc, int ncolc, int itrnc, IssmDouble *d, int iaddd)
Definition: MatrixUtils.cpp:20
SsetEnum
@ SsetEnum
Definition: EnumDefinitions.h:1282
ElementMatrix::col_flocaldoflist
int * col_flocaldoflist
Definition: ElementMatrix.h:44
ElementMatrix::ncols
int ncols
Definition: ElementMatrix.h:24
GetLocalDofList
int * GetLocalDofList(Node **nodes, int numnodes, int setenum, int approximation)
Definition: Node.cpp:1072
Matrix::SetValues
void SetValues(int m, int *idxm, int n, int *idxn, IssmDouble *values, InsMode mode)
Definition: Matrix.h:284
ElementMatrix::CheckConsistency
void CheckConsistency(void)
Definition: ElementMatrix.cpp:364
Matrix3x3Invert
void Matrix3x3Invert(IssmDouble *Ainv, IssmDouble *A)
Definition: MatrixUtils.cpp:448
GetGlobalDofList
int * GetGlobalDofList(Node **nodes, int numnodes, int setenum, int approximation)
Definition: Node.cpp:1035
Vector::SetValues
void SetValues(int ssize, int *list, doubletype *values, InsMode mode)
Definition: Vector.h:153
ElementMatrix::row_sglobaldoflist
int * row_sglobaldoflist
Definition: ElementMatrix.h:39
ElementMatrix::ElementMatrix
ElementMatrix()
Definition: ElementMatrix.cpp:20
GsetEnum
@ GsetEnum
Definition: EnumDefinitions.h:1093
ElementMatrix::nrows
int nrows
Definition: ElementMatrix.h:23
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
ElementMatrix::row_fsize
int row_fsize
Definition: ElementMatrix.h:33
ElementMatrix::col_ssize
int col_ssize
Definition: ElementMatrix.h:47
ElementMatrix::row_ssize
int row_ssize
Definition: ElementMatrix.h:37
ElementMatrix::row_flocaldoflist
int * row_flocaldoflist
Definition: ElementMatrix.h:34
ElementMatrix::AddToGlobal
void AddToGlobal(Matrix< IssmDouble > *Kff, Matrix< IssmDouble > *Kfs)
Definition: ElementMatrix.cpp:271
ElementMatrix::col_fglobaldoflist
int * col_fglobaldoflist
Definition: ElementMatrix.h:45
FsetEnum
@ FsetEnum
Definition: EnumDefinitions.h:1075
ElementMatrix::dofsymmetrical
bool dofsymmetrical
Definition: ElementMatrix.h:25
ElementMatrix
Definition: ElementMatrix.h:19
ElementMatrix::Init
void Init(ElementMatrix *Ke)
Definition: ElementMatrix.cpp:422
ElementMatrix::row_fglobaldoflist
int * row_fglobaldoflist
Definition: ElementMatrix.h:35
ElementMatrix::col_sglobaldoflist
int * col_sglobaldoflist
Definition: ElementMatrix.h:49
GetNumberOfDofs
int GetNumberOfDofs(Node **nodes, int numnodes, int setenum, int approximation)
Definition: Node.cpp:1129
ElementMatrix::values
IssmDouble * values
Definition: ElementMatrix.h:26