7 #include "../../shared/io/Print/Print.h"
8 #include "../../shared/Exceptions/exceptions.h"
9 #include "../../shared/MemOps/MemOps.h"
10 #include "../../shared/Numerics/recast.h"
11 #include "../../shared/Enum/Enum.h"
12 #include "../../shared/Numerics/GaussPoints.h"
13 #include "../../shared/Numerics/constants.h"
43 double *coords_vert = NULL;
44 double *weights_vert = NULL;
47 GaussLegendreTria(&numgauss_horiz,&coords1_horiz,&coords2_horiz,&coords3_horiz,&weights_horiz,order_horiz);
49 numgauss_vert=order_vert;
52 numgauss=numgauss_horiz*numgauss_vert;
60 for (ighoriz=0; ighoriz<numgauss_horiz; ighoriz++){
61 for (igvert=0; igvert<numgauss_vert; igvert++){
62 coords1[numgauss_vert*ighoriz+igvert]=coords1_horiz[ighoriz];
63 coords2[numgauss_vert*ighoriz+igvert]=coords2_horiz[ighoriz];
64 coords3[numgauss_vert*ighoriz+igvert]=coords3_horiz[ighoriz];
65 coords4[numgauss_vert*ighoriz+igvert]=coords_vert[igvert];
66 weights[numgauss_vert*ighoriz+igvert]=weights_horiz[ighoriz]*weights_vert[igvert];
78 xDelete<IssmDouble>(coords1_horiz);
79 xDelete<IssmDouble>(coords2_horiz);
80 xDelete<IssmDouble>(coords3_horiz);
81 xDelete<double>(coords_vert);
82 xDelete<IssmDouble>(weights_horiz);
83 xDelete<double>(weights_vert);
89 double *seg_coords = NULL;
90 double *seg_weights = NULL;
104 if(index1==0 && index2==3){
111 else if (index1==1 && index2==4){
118 else if (index1==2 && index2==5){
126 _error_(
"Penta not supported yet");
137 xDelete<double>(seg_coords);
138 xDelete<double>(seg_weights);
145 if(index1==0 && index2==1 && index3==2){
155 else if(index1==3 && index2==4 && index3==5){
165 _error_(
"Tria not supported yet");
173 double *seg_horiz_coords = NULL;
174 double *seg_horiz_weights = NULL;
175 double *seg_vert_coords = NULL;
176 double *seg_vert_weights = NULL;
192 if(index1==0 && index2==1 && index3==4 && index4==3){
193 for(i=0;i<order_horiz;i++){
194 for(j=0;j<order_vert;j++){
195 coords1[i*order_vert+j]= 0.5*(1-seg_horiz_coords[i]);
196 coords2[i*order_vert+j]=1-0.5*(1-seg_horiz_coords[i]);
198 coords4[i*order_vert+j]=seg_vert_coords[j];
199 weights[i*order_vert+j]=seg_horiz_weights[i]*seg_vert_weights[j];
203 else if(index1==1 && index2==2 && index3==5 && index4==4){
204 for(i=0;i<order_horiz;i++){
205 for(j=0;j<order_vert;j++){
207 coords2[i*order_vert+j]= 0.5*(1-seg_horiz_coords[i]);
208 coords3[i*order_vert+j]=1-0.5*(1-seg_horiz_coords[i]);
209 coords4[i*order_vert+j]=seg_vert_coords[j];
210 weights[i*order_vert+j]=seg_horiz_weights[i]*seg_vert_weights[j];
214 else if(index1==2 && index2==0 && index3==3 && index4==5){
215 for(i=0;i<order_horiz;i++){
216 for(j=0;j<order_vert;j++){
217 coords1[i*order_vert+j]=1-0.5*(1-seg_horiz_coords[i]);
219 coords3[i*order_vert+j]= 0.5*(1-seg_horiz_coords[i]);
220 coords4[i*order_vert+j]=seg_vert_coords[j];
221 weights[i*order_vert+j]=seg_horiz_weights[i]*seg_vert_weights[j];
226 _error_(
"Tria not supported yet (user provided indices " << index1 <<
" " << index2 <<
" " << index3 <<
" " << index4 <<
")");
230 xDelete<double>(seg_horiz_coords);
231 xDelete<double>(seg_horiz_weights);
232 xDelete<double>(seg_vert_coords);
233 xDelete<double>(seg_vert_weights);
261 xy_list[0][0]=0; xy_list[0][1]=0;
262 xy_list[1][0]=r1; xy_list[1][1]=0;
263 xy_list[2][0]=0; xy_list[2][1]=r2;
266 x = this->
coords1[ig]*xy_list[0][0] + this->
coords2[ig]*xy_list[1][0] + this->
coords3[ig]*xy_list[2][0];
267 y = this->
coords1[ig]*xy_list[0][1] + this->
coords2[ig]*xy_list[1][1] + this->
coords3[ig]*xy_list[2][1];
286 _error_(
"index "<<index<<
" not supported yet");
300 xy_list[0][0]=r1; xy_list[0][1]=0;
301 xy_list[1][0]=0; xy_list[1][1]=1.;
302 xy_list[2][0]=0; xy_list[2][1]=r2;
306 x = gauss1->
coords1[ig]*xy_list[0][0] + gauss1->
coords2[ig]*xy_list[1][0] + gauss1->
coords3[ig]*xy_list[2][0];
307 y = gauss1->
coords1[ig]*xy_list[0][1] + gauss1->
coords2[ig]*xy_list[1][1] + gauss1->
coords3[ig]*xy_list[2][1];
326 _error_(
"index "<<index<<
" not supported yet");
331 xy_list[0][0]=r1; xy_list[0][1]=0;
332 xy_list[1][0]=1.; xy_list[1][1]=0;
333 xy_list[2][0]=0; xy_list[2][1]=1.;
337 x = gauss2->
coords1[ig]*xy_list[0][0] + gauss2->
coords2[ig]*xy_list[1][0] + gauss2->
coords3[ig]*xy_list[2][0];
338 y = gauss2->
coords1[ig]*xy_list[0][1] + gauss2->
coords2[ig]*xy_list[1][1] + gauss2->
coords3[ig]*xy_list[2][1];
357 _error_(
"index "<<index<<
" not supported yet");
418 for(
int i=0;i<order_horiz;i++){
419 for(
int j=0;j<order_vert;j++){
420 coords1[i*order_vert+j]=0.5*(area_coordinates[0][0]+area_coordinates[1][0]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][0]-area_coordinates[0][0]);
421 coords2[i*order_vert+j]=0.5*(area_coordinates[0][1]+area_coordinates[1][1]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][1]-area_coordinates[0][1]);
422 coords3[i*order_vert+j]=0.5*(area_coordinates[0][2]+area_coordinates[1][2]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][2]-area_coordinates[0][2]);
423 coords4[i*order_vert+j]=seg_vert_coords[j];
424 weights[i*order_vert+j]=seg_horiz_weights[i]*seg_vert_weights[j];
429 xDelete<IssmPDouble>(seg_horiz_coords);
430 xDelete<IssmPDouble>(seg_horiz_weights);
431 xDelete<IssmPDouble>(seg_vert_coords);
432 xDelete<IssmPDouble>(seg_vert_weights);
453 for(
int i=0;i<order_horiz;i++){
454 coords1[i]=0.5*(area_coordinates[0][0]+area_coordinates[1][0]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][0]-area_coordinates[0][0]);
455 coords2[i]=0.5*(area_coordinates[0][1]+area_coordinates[1][1]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][1]-area_coordinates[0][1]);
456 coords3[i]=0.5*(area_coordinates[0][2]+area_coordinates[1][2]) + 0.5*seg_horiz_coords[i]*(area_coordinates[1][2]-area_coordinates[0][2]);
458 weights[i]=seg_horiz_weights[i];
462 xDelete<IssmPDouble>(seg_horiz_coords);
463 xDelete<IssmPDouble>(seg_horiz_weights);
558 if(index1==0 && index2==1 && index3==2){
564 _error_(
"Tria not supported yet");
589 switch(finiteelement){
598 default:
_error_(
"node index should be in [0 5]");
613 default:
_error_(
"node index should be in [0 8]");
631 default:
_error_(
"node index should be in [0 11]");
654 default:
_error_(
"node index should be in [0 14]");
672 default:
_error_(
"node index should be in [0 11]");
684 default:
_error_(
"node index should be in [0 6]");
710 default:
_error_(
"node index should be in [0 17]");
738 default:
_error_(
"node index should be in [0 18]");
777 default:
_error_(
"node index should be in [0 29]");
798 default:
_error_(
"vertex index should be in [0 5]");
807 GaussTria* gauss_tria = xDynamicCast<GaussTria*>(gauss);