Changeset 16801
- Timestamp:
- 11/16/13 09:07:02 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r16800 r16801 867 867 /*Build load vector: */ 868 868 for(i=0;i<numnodes;i++){ 869 pe->values[i* NDOF2+0]+=-driving_stress_baseline*slope[0]*Jdet*gauss->weight*basis[i];870 pe->values[i* NDOF2+1]+=-driving_stress_baseline*slope[1]*Jdet*gauss->weight*basis[i];869 pe->values[i*2+0]+=-driving_stress_baseline*slope[0]*Jdet*gauss->weight*basis[i]; 870 pe->values[i*2+1]+=-driving_stress_baseline*slope[1]*Jdet*gauss->weight*basis[i]; 871 871 } 872 872 } -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16800 r16801 1984 1984 1985 1985 _assert_(gauss->Enum()==GaussTriaEnum); 1986 this-> JacobianDeterminant(pJdet,xyz_list,(GaussTria*)gauss);1986 this->GetJacobianDeterminant(pJdet,xyz_list,(GaussTria*)gauss); 1987 1987 1988 1988 } -
issm/trunk-jpl/src/c/classes/gauss/GaussPenta.h
r16675 r16801 22 22 23 23 public: 24 IssmDouble weight;25 24 IssmDouble coord1; 26 25 IssmDouble coord2; -
issm/trunk-jpl/src/c/classes/gauss/GaussSeg.h
r16675 r16801 18 18 19 19 public: 20 IssmDouble weight;21 20 IssmDouble coord1; 22 21 -
issm/trunk-jpl/src/c/classes/gauss/GaussTria.h
r16675 r16801 20 20 21 21 public: 22 IssmDouble weight;23 22 IssmDouble coord1; 24 23 IssmDouble coord2;
Note:
See TracChangeset
for help on using the changeset viewer.