Changeset 16801


Ignore:
Timestamp:
11/16/13 09:07:02 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: done with Driving stress SSA

Location:
issm/trunk-jpl/src/c
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp

    r16800 r16801  
    867867                /*Build load vector: */
    868868                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];
    871871                }
    872872        }
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r16800 r16801  
    19841984
    19851985        _assert_(gauss->Enum()==GaussTriaEnum);
    1986         this->JacobianDeterminant(pJdet,xyz_list,(GaussTria*)gauss);
     1986        this->GetJacobianDeterminant(pJdet,xyz_list,(GaussTria*)gauss);
    19871987
    19881988}
  • issm/trunk-jpl/src/c/classes/gauss/GaussPenta.h

    r16675 r16801  
    2222
    2323        public:
    24                 IssmDouble weight;
    2524                IssmDouble coord1;
    2625                IssmDouble coord2;
  • issm/trunk-jpl/src/c/classes/gauss/GaussSeg.h

    r16675 r16801  
    1818
    1919        public:
    20                 IssmDouble weight;
    2120                IssmDouble coord1;
    2221
  • issm/trunk-jpl/src/c/classes/gauss/GaussTria.h

    r16675 r16801  
    2020
    2121        public:
    22                 IssmDouble weight;
    2322                IssmDouble coord1;
    2423                IssmDouble coord2;
Note: See TracChangeset for help on using the changeset viewer.