Changeset 27176


Ignore:
Timestamp:
08/02/22 02:53:11 (3 years ago)
Author:
bdef
Message:

CHG: changes in the way we deal with convergence in HydroDC

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

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/Reducevectorgtofx/Reducevectorgtofx.cpp

    r27170 r27176  
    1616        /*If fsize is 0, return NULL vector*/
    1717        if(fsize==0){
    18                 *puf=NULL;
     18                Vector<IssmDouble>* uf=new Vector<IssmDouble>(0);
     19                *puf=uf;
     20                //*puf=NULL;
    1921                return;
    2022        }
  • issm/trunk-jpl/src/c/solutionsequences/convergence.cpp

    r27171 r27176  
    11/*!\file: convergence.cpp
    22 * \brief: figure out if convergence has been reached
    3  */ 
     3 */
    44
    55#include "../classes/classes.h"
     
    2121        IssmDouble res;
    2222        int analysis_type;
     23        int ufsize;
    2324
    2425        if(VerboseModule()) _printf0_("   checking convergence\n");
    2526
    26         /*If uf is NULL in input, f-set is nil, model is fully constrained, therefore converged from 
     27        /*If uf is NULL in input, f-set is nil, model is fully constrained, therefore converged from
    2728         * the get go: */
    28         if(uf->IsEmpty()){
     29        uf->GetSize(&ufsize);
     30        if(ufsize==0){
    2931                *pconverged=true;
    3032                return;
    3133        }
     34
     35        /* if(uf->IsEmpty()){ */
     36        /*      *pconverged=true; */
     37        /*      return; */
     38        /* } */
    3239
    3340        /*Force equilibrium (Mandatory)*/
     
    5461                converged=true;
    5562        }
    56         else{ 
     63        else{
    5764                if(VerboseConvergence()) _printf0_(setw(50)<<left<<"   mechanical equilibrium convergence criterion"<<res*100<<" > "<<eps_res*100<<" %\n");
    5865                converged=false;
     
    6471                //compute norm(du)/norm(u)
    6572                duf=old_uf->Duplicate(); old_uf->Copy(duf); duf->AYPX(uf,-1.0);
    66                 ndu=duf->Norm(NORM_TWO); nu=old_uf->Norm(NORM_TWO);
     73                ndu=duf->Norm(NORM_TWO); nu=old_uf->Norm(NORM_TWO)+1.e-14;
    6774
    6875                if (xIsNan<IssmDouble>(ndu) || xIsNan<IssmDouble>(nu)) _error_("convergence criterion is NaN!");
     
    7683                                if(VerboseConvergence()) _printf0_(setw(50) << left << "   Convergence criterion: norm(du)/norm(u)" << ndu/nu*100 << " < " << eps_rel*100 << " %\n");
    7784                        }
    78                         else{ 
     85                        else{
    7986                                if(VerboseConvergence()) _printf0_(setw(50) << left << "   Convergence criterion: norm(du)/norm(u)" << ndu/nu*100 << " > " << eps_rel*100 << " %\n");
    8087                                converged=false;
Note: See TracChangeset for help on using the changeset viewer.