Changeset 24715


Ignore:
Timestamp:
04/17/20 08:06:57 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/solutionsequences/solutionsequence_fct.cpp

    r24714 r24715  
    6363        /*Create Left Hand side of Lower order solution
    6464         *
    65          * LHS = [ML theta*detlat *(K+D)^n+1]
     65         * LHS = [ML - theta*detlat *(K+D)^n+1]
    6666         *
    6767         */
     
    147147        /*Create Right Hand side of Lower order solution
    148148         *
    149          * RHS = [ML + (1 theta) deltaT L^n] u^n
     149         * RHS = [ML + (1 - theta) deltaT L^n] u^n
    150150         *
    151151         * where L = K + D
     
    445445        CreateDMatrix(&D_petsc,K_petsc);
    446446
    447         /*Create LHS: [ML theta*detlat *(K+D)^n+1]*/
     447        /*Create LHS: [ML - theta*detlat *(K+D)^n+1]*/
    448448        CreateLHS(&LHS,&dmax,K_petsc,D_petsc,Ml_petsc,theta,deltat,femmodel,configuration_type);
    449449
    450         /*Create RHS: [ML + (1 theta) deltaT L^n] u^n */
     450        /*Create RHS: [ML + (1 - theta) deltaT L^n] u^n */
    451451        CreateRHS(&RHS,K_petsc,D_petsc,Ml_petsc,uf->pvector->vector,theta,deltat,dmax,femmodel,configuration_type);
    452452        delete uf;
Note: See TracChangeset for help on using the changeset viewer.