10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
15 #include "../classes.h"
16 #include "../../shared/shared.h"
45 if(!Ke)
_error_(
"Input Element Matrix is a NULL pointer");
54 int gsize,fsize,ssize;
60 _error_(
"Two input element matrices are NULL");
75 P=xNew<int>(Ke2->
nrows);
79 for(i=0;i<Ke2->
nrows;i++){
81 for(j=0;j<Ke1->
nrows;j++){
83 found=
true; P[i]=j;
break;
99 for(i=0;i<Ke1->
nrows;i++){
100 for(j=0;j<Ke1->
ncols;j++){
105 for(i=0;i<Ke2->
nrows;i++){
106 for(j=0;j<Ke2->
ncols;j++){
224 xDelete<IssmDouble>(this->
values);
253 localvalues=xNew<IssmDouble>(this->
row_fsize);
262 xDelete<IssmDouble>(localvalues);
266 _error_(
"non dofsymmetrical matrix AddToGlobal routine not support yet!");
304 xDelete<IssmDouble>(localvalues);
319 xDelete<IssmDouble>(localvalues);
323 _error_(
"non dofsymmetrical matrix AddToGlobal routine not support yet!");
354 xDelete<IssmDouble>(localvalues);
359 _error_(
"non dofsymmetrical matrix AddToGlobal routine not support yet!");
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");
386 for(i=0;i<
nrows;i++){
387 _printf_(setw(4) << right << i <<
": ");
432 xMemCpy<IssmDouble>(this->
values,Ke->
values,this->nrows*this->ncols);
490 for(
int i=0;i<this->
nrows;i++){
491 for(
int j=0;j<this->
ncols;j++){
493 this->
values[i*this->ncols+i] += this->
values[i*this->ncols+j];
494 this->
values[i*this->ncols+j] = 0.;
545 int counter,i,j,isize;
552 int *iindices = NULL;
556 isize = this->
nrows - bsize;
557 iindices = xNew<int>(isize);
559 for(i=0;i<this->
nrows;i++){
561 for(j=0;j<bsize;j++){
569 iindices[counter++] = i;
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]];
585 Kbbinv = xNew<IssmDouble>(bsize*bsize);
588 Kbbinv[0] = 1./Kbb[0];
602 Ktemp = xNew<IssmDouble>(isize*isize);
603 TripleMultiply(Kib,isize,bsize,0, Kbbinv,bsize,bsize,0, Kbi,bsize,isize,0, Ktemp,0);
606 for(i=0;i<isize*isize;i++) Ktemp[i] = Kii[i] - Ktemp[i];
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];
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);