Changeset 17750 for issm/trunk-jpl/src/c/classes/gauss/GaussTetra.cpp
- Timestamp:
- 04/16/14 10:31:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/gauss/GaussTetra.cpp
r17490 r17750 53 53 for(int i=0;i<numgauss;i++) coords4[i]=0.; 54 54 } 55 else if(index1==0 && index2== 1 && index3==3){55 else if(index1==0 && index2==3 && index3==1){ 56 56 GaussLegendreTria(&numgauss,&coords1,&coords2,&coords4,&weights,order); 57 57 coords3=xNew<IssmDouble>(numgauss); 58 58 for(int i=0;i<numgauss;i++) coords3[i]=0.; 59 59 } 60 else if(index1==1 && index2== 2 && index3==3){60 else if(index1==1 && index2==3 && index3==2){ 61 61 GaussLegendreTria(&numgauss,&coords2,&coords3,&coords4,&weights,order); 62 62 coords1=xNew<IssmDouble>(numgauss); 63 63 for(int i=0;i<numgauss;i++) coords1[i]=0.; 64 64 } 65 else if(index1== 2 && index2==0&& index3==3){65 else if(index1==0 && index2==2 && index3==3){ 66 66 GaussLegendreTria(&numgauss,&coords1,&coords3,&coords4,&weights,order); 67 67 coords2=xNew<IssmDouble>(numgauss);
Note:
See TracChangeset
for help on using the changeset viewer.