Changeset 25697


Ignore:
Timestamp:
10/20/20 11:43:06 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: making steadystate work

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

Legend:

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

    r25540 r25697  
    129129        iomodel->FetchDataToInput(inputs,elements,"md.geometry.base",BaseEnum);
    130130        iomodel->FetchDataToInput(inputs,elements,"md.geometry.bed",BedEnum);
     131        iomodel->FetchDataToInput(inputs,elements,"md.solidearth.sealevel",SealevelEnum,0); /*Needed for friction*/
    131132        iomodel->FetchDataToInput(inputs,elements,"md.basalforcings.geothermalflux",BasalforcingsGeothermalfluxEnum);
    132133        iomodel->FetchDataToInput(inputs,elements,"md.basalforcings.groundedice_melting_rate",BasalforcingsGroundediceMeltingRateEnum);
  • issm/trunk-jpl/src/c/classes/Loads/Moulin.cpp

    r25683 r25697  
    66/*{{{*/
    77#ifdef HAVE_CONFIG_H
    8         #include <config.h>
     8#include <config.h>
    99#else
    1010#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
     
    367367
    368368        /*Load vector*/
    369         Ke->values[0] = +Am/(rho_water*g)/dt;
     369        if(dt>0){
     370                Ke->values[0] = +Am/(rho_water*g)/dt;
     371        }
    370372
    371373        /*Clean up and return*/
     
    393395        element->GetInputValue(&moulin_load,node,HydrologyMoulinInputEnum);
    394396
    395         pe->values[0] = moulin_load +Am/(rho_water*g) * phi_old/dt;
     397        pe->values[0] = moulin_load;
     398        if(dt>0.){
     399                pe->values[0] += Am/(rho_water*g) * phi_old/dt;
     400        }
    396401
    397402        /*Clean up and return*/
     
    447452        /*Clean up and return*/
    448453        return pe;
    449  }
     454}
    450455/*}}}*/
    451456ElementVector* Moulin::CreatePVectorHydrologyDCEfficient(void){/*{{{*/
Note: See TracChangeset for help on using the changeset viewer.