Changeset 25722
- Timestamp:
- 10/29/20 14:22:24 (4 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r25598 r25722 366 366 void Penta::CalvingRateLevermann(){/*{{{*/ 367 367 368 IssmDouble xyz_list[NUMVERTICES][3];369 GaussPenta* gauss=NULL;370 368 IssmDouble vx,vy,vel; 371 369 IssmDouble strainparallel; … … 376 374 IssmDouble calvingrate[NUMVERTICES]; 377 375 378 /* Get node coordinates and dof list: */379 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);380 381 376 /*Retrieve all inputs and parameters we will need*/ 382 377 Input* vx_input=this->GetInput(VxEnum); _assert_(vx_input); … … 387 382 388 383 /* Start looping on the number of vertices: */ 389 gauss=new GaussPenta();384 GaussPenta* gauss=new GaussPenta(); 390 385 for (int iv=0;iv<NUMVERTICES;iv++){ 391 386 gauss->GaussVertex(iv); … … 415 410 /*Clean up and return*/ 416 411 delete gauss; 417 418 } 419 /*}}}*/ 412 }/*}}}*/ 420 413 void Penta::CalvingFluxLevelset(){/*{{{*/ 421 414 -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r25721 r25722 406 406 void Tria::CalvingCrevasseDepth(){/*{{{*/ 407 407 408 IssmDouble xyz_list[NUMVERTICES][3];409 408 IssmDouble calvingrate[NUMVERTICES]; 410 409 IssmDouble vx,vy,vel; … … 414 413 IssmDouble s_xx,s_xy,s_yy,s1,s2,stmp; 415 414 int crevasse_opening_stress; 416 417 /* Get node coordinates and dof list: */418 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);419 415 420 416 /*retrieve the type of crevasse_opening_stress*/ … … 504 500 void Tria::CalvingRateLevermann(){/*{{{*/ 505 501 506 IssmDouble xyz_list[NUMVERTICES][3];507 502 IssmDouble vx,vy,vel; 508 503 IssmDouble strainparallel; … … 513 508 IssmDouble calvingrate[NUMVERTICES]; 514 509 515 /* Get node coordinates and dof list: */516 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);517 518 510 /*Retrieve all inputs and parameters we will need*/ 519 Input * vx_input=this->GetInput(VxEnum);_assert_(vx_input);520 Input * vy_input=this->GetInput(VyEnum);_assert_(vy_input);521 Input * bs_input = this->GetInput(BaseEnum);_assert_(bs_input);522 Input * strainparallel_input=this->GetInput(StrainRateparallelEnum);_assert_(strainparallel_input);523 Input * strainperpendicular_input=this->GetInput(StrainRateperpendicularEnum);_assert_(strainperpendicular_input);524 Input * levermanncoeff_input=this->GetInput(CalvinglevermannCoeffEnum);_assert_(levermanncoeff_input);511 Input *vx_input = this->GetInput(VxEnum); _assert_(vx_input); 512 Input *vy_input = this->GetInput(VyEnum); _assert_(vy_input); 513 Input *bs_input = this->GetInput(BaseEnum); _assert_(bs_input); 514 Input *strainparallel_input = this->GetInput(StrainRateparallelEnum); _assert_(strainparallel_input); 515 Input *strainperpendicular_input = this->GetInput(StrainRateperpendicularEnum); _assert_(strainperpendicular_input); 516 Input *levermanncoeff_input = this->GetInput(CalvinglevermannCoeffEnum); _assert_(levermanncoeff_input); 525 517 526 518 /* Start looping on the number of vertices: */ … … 556 548 /*Clean up and return*/ 557 549 delete gauss; 558 559 } 560 /*}}}*/ 550 }/*}}}*/ 561 551 void Tria::CalvingFluxLevelset(){/*{{{*/ 562 552 … … 573 563 IssmDouble xyz_front[2][3]; 574 564 575 IssmDouble *xyz_list = NULL;576 this->GetVerticesCoordinates(&xyz_list);565 IssmDouble xyz_list[NUMVERTICES][3]; 566 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 577 567 578 568 /*Recover parameters and values*/ … … 599 589 pt1 = 1; pt2 = 0; 600 590 } 601 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);602 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);603 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);604 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);605 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);606 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);591 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 592 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 593 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 594 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 595 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 596 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 607 597 } 608 598 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 615 605 } 616 606 617 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);618 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);619 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);620 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);621 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);622 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);607 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 608 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 609 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 610 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 611 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 612 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 623 613 } 624 614 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 631 621 } 632 622 633 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);634 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);635 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);636 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);637 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);638 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);623 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 624 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 625 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 626 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 627 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 628 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 639 629 } 640 630 else{ … … 673 663 674 664 /*Start looping on Gaussian points*/ 675 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);665 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 676 666 while(gauss->next()){ 677 667 thickness_input->GetInputValue(&thickness,gauss); … … 707 697 IssmDouble xyz_front[2][3]; 708 698 709 710 IssmDouble *xyz_list = NULL; 711 this->GetVerticesCoordinates(&xyz_list); 699 IssmDouble xyz_list[NUMVERTICES][3]; 700 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 712 701 713 702 /*Recover parameters and values*/ … … 734 723 pt1 = 1; pt2 = 0; 735 724 } 736 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);737 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);738 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);739 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);740 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);741 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);725 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 726 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 727 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 728 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 729 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 730 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 742 731 } 743 732 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 750 739 } 751 740 752 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);753 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);754 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);755 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);756 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);757 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);741 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 742 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 743 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 744 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 745 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 746 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 758 747 } 759 748 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 766 755 } 767 756 768 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);769 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);770 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);771 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);772 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);773 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);757 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 758 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 759 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 760 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 761 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 762 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 774 763 } 775 764 else{ … … 814 803 815 804 /*Start looping on Gaussian points*/ 816 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);805 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 817 806 while(gauss->next()){ 818 807 thickness_input->GetInputValue(&thickness,gauss); … … 1372 1361 int domaintype; 1373 1362 IssmDouble phi,scalefactor,floatingarea; 1374 IssmDouble *xyz_list = NULL;1375 1363 1376 1364 if(!IsIceInElement())return 0.; … … 1380 1368 if(domaintype!=Domain2DhorizontalEnum && domaintype!=Domain3DEnum) _error_("mesh "<<EnumToStringx(domaintype)<<" not supported yet"); 1381 1369 1382 this->GetVerticesCoordinates(&xyz_list); 1383 phi=this->GetGroundedPortion(xyz_list); 1370 IssmDouble xyz_list[NUMVERTICES][3]; 1371 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 1372 phi=this->GetGroundedPortion(&xyz_list[0][0]); 1384 1373 floatingarea=(1-phi)*this->GetArea(); 1385 1374 if(scaled==true){ … … 1390 1379 1391 1380 /*Clean up and return*/ 1392 xDelete<IssmDouble>(xyz_list);1393 1381 return floatingarea; 1394 1382 } … … 1405 1393 } 1406 1394 /*Intermediaries*/ 1407 IssmDouble* xyz_list = NULL;1408 1395 IssmDouble bed_normal[2],base[NUMVERTICES],bed[NUMVERTICES],surface[NUMVERTICES],phi[NUMVERTICES]; 1409 1396 IssmDouble water_pressure[NUMVERTICES],pressureice[NUMVERTICES],pressure[NUMVERTICES]; … … 1419 1406 IssmDouble gravity = FindParam(ConstantsGEnum); 1420 1407 1421 /* Get node coordinates and dof list: */ 1422 GetVerticesCoordinates(&xyz_list); 1408 IssmDouble xyz_list[NUMVERTICES][3]; 1409 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 1410 1423 1411 /*Retrieve all inputs we will be needing: */ 1424 1412 Input* vx_input = this->GetInput(VxEnum); _assert_(vx_input); … … 1431 1419 1432 1420 /*Compute strain rate viscosity and pressure: */ 1433 this->StrainRateSSA(&epsilon[0], xyz_list,gauss,vx_input,vy_input);1434 this->material->ViscosityFS(&viscosity,2, xyz_list,gauss,vx_input,vy_input,NULL);1421 this->StrainRateSSA(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input); 1422 this->material->ViscosityFS(&viscosity,2,&xyz_list[0][0],gauss,vx_input,vy_input,NULL); 1435 1423 /*FIXME: this is for Hongju only*/ 1436 1424 // pressureice[iv]=gravity*rho_ice*(surface[iv]-base[iv]); … … 1447 1435 /*If was grounded*/ 1448 1436 if (phi[i]>=0.){ 1449 NormalBase(&bed_normal[0], xyz_list);1437 NormalBase(&bed_normal[0],&xyz_list[0][0]); 1450 1438 sigma_nn[i]=-1*(sigmaxx[i]*bed_normal[0]*bed_normal[0] + sigmayy[i]*bed_normal[1]*bed_normal[1]+2*sigmaxy[i]*bed_normal[0]*bed_normal[1]); 1451 1439 water_pressure[i]=-gravity*rho_water*base[i]; … … 1465 1453 /*clean up*/ 1466 1454 delete gauss; 1467 xDelete<IssmDouble>(xyz_list);1468 1455 } 1469 1456 /*}}}*/ … … 2479 2466 int domaintype; 2480 2467 IssmDouble phi,scalefactor,groundedarea; 2481 IssmDouble *xyz_list = NULL;2482 2468 2483 2469 if(!IsIceInElement())return 0.; … … 2487 2473 if(domaintype!=Domain2DhorizontalEnum && domaintype!=Domain3DEnum) _error_("mesh "<<EnumToStringx(domaintype)<<" not supported yet"); 2488 2474 2489 this->GetVerticesCoordinates(&xyz_list); 2490 phi=this->GetGroundedPortion(xyz_list); 2475 IssmDouble xyz_list[NUMVERTICES][3]; 2476 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2477 phi=this->GetGroundedPortion(&xyz_list[0][0]); 2491 2478 groundedarea=phi*this->GetArea(); 2492 2479 if(scaled==true){ … … 2497 2484 2498 2485 /*Clean up and return*/ 2499 xDelete<IssmDouble>(xyz_list);2500 2486 return groundedarea; 2501 2487 } … … 2556 2542 2557 2543 /*Get ice front coordinates*/ 2558 IssmDouble *xyz_list = NULL; 2544 IssmDouble xyz_list[NUMVERTICES][3]; 2545 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2559 2546 IssmDouble* xyz_front = NULL; 2560 this->GetVerticesCoordinates(&xyz_list); 2561 this->GetIcefrontCoordinates(&xyz_front,xyz_list,MaskIceLevelsetEnum); 2547 this->GetIcefrontCoordinates(&xyz_front,&xyz_list[0][0],MaskIceLevelsetEnum); 2562 2548 2563 2549 /*Get normal vector*/ … … 2584 2570 2585 2571 /*Start looping on Gaussian points*/ 2586 Gauss* gauss=this->NewGauss( xyz_list,xyz_front,3);2572 Gauss* gauss=this->NewGauss(&xyz_list[0][0],xyz_front,3); 2587 2573 while(gauss->next()){ 2588 2574 thickness_input->GetInputValue(&thickness,gauss); … … 2595 2581 2596 2582 /*Cleanup and return*/ 2597 xDelete<IssmDouble>(xyz_list);2598 2583 xDelete<IssmDouble>(xyz_front); 2599 2584 delete gauss; … … 2615 2600 IssmDouble xyz_front[2][3]; 2616 2601 2617 2618 IssmDouble *xyz_list = NULL; 2619 this->GetVerticesCoordinates(&xyz_list); 2602 IssmDouble xyz_list[NUMVERTICES][3]; 2603 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2620 2604 2621 2605 /*Recover parameters and values*/ … … 2642 2626 pt1 = 1; pt2 = 0; 2643 2627 } 2644 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);2645 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);2646 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);2647 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);2648 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);2649 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);2628 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 2629 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 2630 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 2631 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 2632 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 2633 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 2650 2634 } 2651 2635 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 2658 2642 } 2659 2643 2660 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);2661 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);2662 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);2663 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);2664 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);2665 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);2644 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 2645 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 2646 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 2647 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 2648 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 2649 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 2666 2650 } 2667 2651 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 2674 2658 } 2675 2659 2676 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);2677 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);2678 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);2679 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);2680 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);2681 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);2660 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 2661 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 2662 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 2663 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 2664 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 2665 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 2682 2666 } 2683 2667 else{ … … 2715 2699 2716 2700 /*Start looping on Gaussian points*/ 2717 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);2701 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 2718 2702 while(gauss->next()){ 2719 2703 thickness_input->GetInputValue(&thickness,gauss); … … 2727 2711 /*Cleanup and return*/ 2728 2712 delete gauss; 2729 xDelete<IssmDouble>(xyz_list);2730 2713 return flux; 2731 2714 } … … 2746 2729 IssmDouble xyz_front[2][3]; 2747 2730 2748 IssmDouble *xyz_list = NULL;2749 this->GetVerticesCoordinates(&xyz_list);2731 IssmDouble xyz_list[NUMVERTICES][3]; 2732 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 2750 2733 2751 2734 /*Recover parameters and values*/ … … 2772 2755 pt1 = 1; pt2 = 0; 2773 2756 } 2774 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);2775 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);2776 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);2777 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);2778 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);2779 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);2757 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 2758 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 2759 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 2760 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 2761 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 2762 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 2780 2763 } 2781 2764 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 2788 2771 } 2789 2772 2790 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);2791 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);2792 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);2793 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);2794 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);2795 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);2773 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 2774 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 2775 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 2776 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 2777 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 2778 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 2796 2779 } 2797 2780 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 2804 2787 } 2805 2788 2806 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);2807 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);2808 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);2809 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);2810 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);2811 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);2789 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 2790 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 2791 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 2792 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 2793 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 2794 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 2812 2795 } 2813 2796 else{ … … 2843 2826 2844 2827 /*Start looping on Gaussian points*/ 2845 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);2828 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 2846 2829 while(gauss->next()){ 2847 2830 thickness_input->GetInputValue(&thickness,gauss); … … 2855 2838 /*Cleanup and return*/ 2856 2839 delete gauss; 2857 xDelete<IssmDouble>(xyz_list);2858 2840 return flux; 2859 2841 } … … 3282 3264 IssmDouble volume; 3283 3265 IssmDouble rho_ice; 3284 IssmDouble* xyz_list=NULL;3285 3266 int point1; 3286 3267 IssmDouble fraction1,fraction2; … … 3291 3272 3292 3273 /* Get node coordinates and dof list: */ 3293 GetVerticesCoordinates(&xyz_list); 3274 IssmDouble xyz_list[NUMVERTICES][3]; 3275 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 3294 3276 3295 3277 /*Retrieve inputs required:*/ … … 3313 3295 while(gauss->next()){ 3314 3296 3315 this->JacobianDeterminant(&Jdet, xyz_list,gauss);3297 this->JacobianDeterminant(&Jdet,&xyz_list[0][0],gauss); 3316 3298 thickness_input->GetInputValue(&thickness, gauss); 3317 3299 … … 3320 3302 3321 3303 /* clean up and Return: */ 3322 xDelete<IssmDouble>(xyz_list);3323 3304 xDelete<IssmDouble>(values); 3324 3305 delete gauss; … … 4046 4027 void Tria::StrainRateparallel(){/*{{{*/ 4047 4028 4048 IssmDouble *xyz_list = NULL;4049 4029 IssmDouble epsilon[3]; 4050 4030 GaussTria* gauss=NULL; … … 4056 4036 4057 4037 /* Get node coordinates and dof list: */ 4058 this->GetVerticesCoordinates(&xyz_list); 4038 IssmDouble xyz_list[NUMVERTICES][3]; 4039 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4059 4040 4060 4041 /*Retrieve all inputs we will need*/ 4061 Input * vx_input=this->GetInput(VxEnum);_assert_(vx_input);4062 Input * vy_input=this->GetInput(VyEnum);_assert_(vy_input);4042 Input *vx_input = this->GetInput(VxEnum); _assert_(vx_input); 4043 Input *vy_input = this->GetInput(VyEnum); _assert_(vy_input); 4063 4044 4064 4045 /* Start looping on the number of vertices: */ … … 4073 4054 4074 4055 /*Compute strain rate viscosity and pressure: */ 4075 this->StrainRateSSA(&epsilon[0], xyz_list,gauss,vx_input,vy_input);4056 this->StrainRateSSA(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input); 4076 4057 strainxx=epsilon[0]; 4077 4058 strainyy=epsilon[1]; … … 4087 4068 /*Clean up and return*/ 4088 4069 delete gauss; 4089 xDelete<IssmDouble>(xyz_list);4090 4070 } 4091 4071 /*}}}*/ 4092 4072 void Tria::StrainRateperpendicular(){/*{{{*/ 4093 4073 4094 IssmDouble *xyz_list = NULL;4095 4074 GaussTria* gauss=NULL; 4096 4075 IssmDouble epsilon[3]; … … 4102 4081 4103 4082 /* Get node coordinates and dof list: */ 4104 this->GetVerticesCoordinates(&xyz_list); 4083 IssmDouble xyz_list[NUMVERTICES][3]; 4084 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4105 4085 4106 4086 /*Retrieve all inputs we will need*/ 4107 Input * vx_input=this->GetInput(VxEnum);_assert_(vx_input);4108 Input * vy_input=this->GetInput(VyEnum);_assert_(vy_input);4087 Input *vx_input = this->GetInput(VxEnum); _assert_(vx_input); 4088 Input *vy_input = this->GetInput(VyEnum); _assert_(vy_input); 4109 4089 4110 4090 /* Start looping on the number of vertices: */ … … 4119 4099 4120 4100 /*Compute strain rate viscosity and pressure: */ 4121 this->StrainRateSSA(&epsilon[0], xyz_list,gauss,vx_input,vy_input);4101 this->StrainRateSSA(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input); 4122 4102 strainxx=epsilon[0]; 4123 4103 strainyy=epsilon[1]; … … 4133 4113 /*Clean up and return*/ 4134 4114 delete gauss; 4135 xDelete<IssmDouble>(xyz_list);4136 4115 } 4137 4116 /*}}}*/ … … 4219 4198 IssmDouble xyz_front[2][3]; 4220 4199 4221 4222 IssmDouble *xyz_list = NULL; 4223 this->GetVerticesCoordinates(&xyz_list); 4200 IssmDouble xyz_list[NUMVERTICES][3]; 4201 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4224 4202 4225 4203 /*Recover parameters and values*/ … … 4246 4224 pt1 = 1; pt2 = 0; 4247 4225 } 4248 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);4249 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);4250 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);4251 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);4252 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);4253 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);4226 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 4227 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 4228 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 4229 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 4230 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 4231 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 4254 4232 } 4255 4233 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 4262 4240 } 4263 4241 4264 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);4265 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);4266 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);4267 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);4268 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);4269 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);4242 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 4243 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 4244 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 4245 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 4246 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 4247 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 4270 4248 } 4271 4249 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 4278 4256 } 4279 4257 4280 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);4281 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);4282 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);4283 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);4284 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);4285 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);4258 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 4259 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 4260 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 4261 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 4262 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 4263 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 4286 4264 } 4287 4265 else{ … … 4319 4297 4320 4298 /*Start looping on Gaussian points*/ 4321 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);4299 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 4322 4300 while(gauss->next()){ 4323 4301 thickness_input->GetInputValue(&thickness,gauss); … … 4331 4309 /*Clean up and return*/ 4332 4310 delete gauss; 4333 xDelete<IssmDouble>(xyz_list);4334 4311 return flux; 4335 4312 } … … 4349 4326 IssmDouble xyz_front[2][3]; 4350 4327 4351 4352 IssmDouble *xyz_list = NULL; 4353 this->GetVerticesCoordinates(&xyz_list); 4328 IssmDouble xyz_list[NUMVERTICES][3]; 4329 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 4354 4330 4355 4331 /*Recover parameters and values*/ … … 4376 4352 pt1 = 1; pt2 = 0; 4377 4353 } 4378 xyz_front[pt2][0]=xyz_list[ 3*2+0]+s1*(xyz_list[3*1+0]-xyz_list[3*2+0]);4379 xyz_front[pt2][1]=xyz_list[ 3*2+1]+s1*(xyz_list[3*1+1]-xyz_list[3*2+1]);4380 xyz_front[pt2][2]=xyz_list[ 3*2+2]+s1*(xyz_list[3*1+2]-xyz_list[3*2+2]);4381 xyz_front[pt1][0]=xyz_list[ 3*2+0]+s2*(xyz_list[3*0+0]-xyz_list[3*2+0]);4382 xyz_front[pt1][1]=xyz_list[ 3*2+1]+s2*(xyz_list[3*0+1]-xyz_list[3*2+1]);4383 xyz_front[pt1][2]=xyz_list[ 3*2+2]+s2*(xyz_list[3*0+2]-xyz_list[3*2+2]);4354 xyz_front[pt2][0]=xyz_list[2][0]+s1*(xyz_list[1][0]-xyz_list[2][0]); 4355 xyz_front[pt2][1]=xyz_list[2][1]+s1*(xyz_list[1][1]-xyz_list[2][1]); 4356 xyz_front[pt2][2]=xyz_list[2][2]+s1*(xyz_list[1][2]-xyz_list[2][2]); 4357 xyz_front[pt1][0]=xyz_list[2][0]+s2*(xyz_list[0][0]-xyz_list[2][0]); 4358 xyz_front[pt1][1]=xyz_list[2][1]+s2*(xyz_list[0][1]-xyz_list[2][1]); 4359 xyz_front[pt1][2]=xyz_list[2][2]+s2*(xyz_list[0][2]-xyz_list[2][2]); 4384 4360 } 4385 4361 else if(gl[1]*gl[2]>0){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 4392 4368 } 4393 4369 4394 xyz_front[pt1][0]=xyz_list[ 3*0+0]+s1*(xyz_list[3*1+0]-xyz_list[3*0+0]);4395 xyz_front[pt1][1]=xyz_list[ 3*0+1]+s1*(xyz_list[3*1+1]-xyz_list[3*0+1]);4396 xyz_front[pt1][2]=xyz_list[ 3*0+2]+s1*(xyz_list[3*1+2]-xyz_list[3*0+2]);4397 xyz_front[pt2][0]=xyz_list[ 3*0+0]+s2*(xyz_list[3*2+0]-xyz_list[3*0+0]);4398 xyz_front[pt2][1]=xyz_list[ 3*0+1]+s2*(xyz_list[3*2+1]-xyz_list[3*0+1]);4399 xyz_front[pt2][2]=xyz_list[ 3*0+2]+s2*(xyz_list[3*2+2]-xyz_list[3*0+2]);4370 xyz_front[pt1][0]=xyz_list[0][0]+s1*(xyz_list[1][0]-xyz_list[0][0]); 4371 xyz_front[pt1][1]=xyz_list[0][1]+s1*(xyz_list[1][1]-xyz_list[0][1]); 4372 xyz_front[pt1][2]=xyz_list[0][2]+s1*(xyz_list[1][2]-xyz_list[0][2]); 4373 xyz_front[pt2][0]=xyz_list[0][0]+s2*(xyz_list[2][0]-xyz_list[0][0]); 4374 xyz_front[pt2][1]=xyz_list[0][1]+s2*(xyz_list[2][1]-xyz_list[0][1]); 4375 xyz_front[pt2][2]=xyz_list[0][2]+s2*(xyz_list[2][2]-xyz_list[0][2]); 4400 4376 } 4401 4377 else if(gl[0]*gl[2]>0){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 4408 4384 } 4409 4385 4410 xyz_front[pt2][0]=xyz_list[ 3*1+0]+s1*(xyz_list[3*0+0]-xyz_list[3*1+0]);4411 xyz_front[pt2][1]=xyz_list[ 3*1+1]+s1*(xyz_list[3*0+1]-xyz_list[3*1+1]);4412 xyz_front[pt2][2]=xyz_list[ 3*1+2]+s1*(xyz_list[3*0+2]-xyz_list[3*1+2]);4413 xyz_front[pt1][0]=xyz_list[ 3*1+0]+s2*(xyz_list[3*2+0]-xyz_list[3*1+0]);4414 xyz_front[pt1][1]=xyz_list[ 3*1+1]+s2*(xyz_list[3*2+1]-xyz_list[3*1+1]);4415 xyz_front[pt1][2]=xyz_list[ 3*1+2]+s2*(xyz_list[3*2+2]-xyz_list[3*1+2]);4386 xyz_front[pt2][0]=xyz_list[1][0]+s1*(xyz_list[0][0]-xyz_list[1][0]); 4387 xyz_front[pt2][1]=xyz_list[1][1]+s1*(xyz_list[0][1]-xyz_list[1][1]); 4388 xyz_front[pt2][2]=xyz_list[1][2]+s1*(xyz_list[0][2]-xyz_list[1][2]); 4389 xyz_front[pt1][0]=xyz_list[1][0]+s2*(xyz_list[2][0]-xyz_list[1][0]); 4390 xyz_front[pt1][1]=xyz_list[1][1]+s2*(xyz_list[2][1]-xyz_list[1][1]); 4391 xyz_front[pt1][2]=xyz_list[1][2]+s2*(xyz_list[2][2]-xyz_list[1][2]); 4416 4392 } 4417 4393 else{ … … 4455 4431 4456 4432 /*Start looping on Gaussian points*/ 4457 Gauss* gauss=this->NewGauss( xyz_list,&xyz_front[0][0],3);4433 Gauss* gauss=this->NewGauss(&xyz_list[0][0],&xyz_front[0][0],3); 4458 4434 while(gauss->next()){ 4459 4435 thickness_input->GetInputValue(&thickness,gauss);
Note:
See TracChangeset
for help on using the changeset viewer.