Changeset 18034


Ignore:
Timestamp:
05/20/14 16:10:51 (11 years ago)
Author:
cborstad
Message:

BUG: numvertices should be numnodes

File:
1 edited

Legend:

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

    r18033 r18034  
    8888void DamageEvolutionAnalysis::CreateConstraints(Constraints* constraints,IoModel* iomodel){/*{{{*/
    8989
    90         int stabilization;
    9190        int finiteelement;
    92         iomodel->Constant(&stabilization,DamageStabilizationEnum);
    9391        iomodel->Constant(&finiteelement,DamageElementinterpEnum);
    9492
     
    450448
    451449        /*Fetch number of vertices and allocate output*/
    452         int numvertices = element->GetNumberOfVertices();
    453         IssmDouble* f   = xNew<IssmDouble>(numvertices);
     450        int numnodes = element->GetNumberOfNodes();
     451        IssmDouble* f   = xNew<IssmDouble>(numnodes);
    454452
    455453        /*retrieve parameters:*/
     
    481479        /*Calculate damage evolution source term: */
    482480        Gauss* gauss=element->NewGauss();
    483         for (int iv=0;iv<numvertices;iv++){
    484                 gauss->GaussVertex(iv);
     481        for (int i=0;i<numnodes;i++){
     482                gauss->GaussNode(element->GetElementType(),i);
    485483               
    486484                damage_input->GetInputValue(&damage,gauss);
     
    509507                NegPsi=max(-Chi,0.); /* healing only for compressive stresses */
    510508
    511                 f[iv]= c1*(pow(PosPsi,c2) - healing*pow(NegPsi,c2))*pow((1.-damage),-c3);
     509                f[i]= c1*(pow(PosPsi,c2) - healing*pow(NegPsi,c2))*pow((1.-damage),-c3);
    512510        }
    513511
Note: See TracChangeset for help on using the changeset viewer.