Changeset 25727


Ignore:
Timestamp:
10/30/20 21:08:02 (4 years ago)
Author:
jdquinn
Message:

BUG: Have to be more careful with rigid and elastic flags

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

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r25722 r25727  
    54465446
    54475447        /*Computational flags:*/
    5448         bool computerigid = true;
    5449         bool computeelastic = true;
     5448        bool computerigid = false;
     5449        bool computeelastic = false;
    54505450        int  horiz;
    54515451
     
    54635463        this->inputs->SetDoubleInput(AreaEnum,this->lid,area);
    54645464        this->AddInput(SealevelAreaEnum,&area,P0Enum);
    5465         if(!computerigid & !computeelastic)return;
    54665465
    54675466        /*recover precomputed green function kernels:*/
     
    55195518
    55205519                                /*Rigid earth gravitational perturbation: */
    5521                                 if(computerigid){
    5522                                         G[i]+=G_rigid_precomputed[index];
    5523                                 }
    5524                                 if(computeelastic){
    5525                                         G[i]+=G_elastic_precomputed[index];
    5526                                 }
     5520                                G[i]+=G_rigid_precomputed[index];
     5521                                G[i]+=G_elastic_precomputed[index];
    55275522                                G[i]=G[i]*constant;
    55285523
     
    56095604                        this->inputs->SetDoubleInput(AreaEnum,this->lid,area);
    56105605                        this->AddInput(SealevelAreaEnum,&area,P0Enum);
    5611 
    5612                         /*Free allocations:*/
    5613                         #ifdef _HAVE_RESTRICT_
    5614                         delete indices;
    5615                         delete G;
    5616                         #else
    5617                         xDelete(indices);
    5618                         xDelete(G);
    5619                         #endif
    5620                 }
     5606                }
     5607
     5608                /*Free allocations:*/
     5609                #ifdef _HAVE_RESTRICT_
     5610                delete indices;
     5611                delete G;
     5612                #else
     5613                xDelete(indices);
     5614                xDelete(G);
     5615                #endif
    56215616        } else { /*computerigid==false*/
    56225617                // do nothing
     
    56355630        bool notfullygrounded=false;
    56365631        bool scaleoceanarea= false;
    5637         bool computeelastic= true;
     5632        bool computerigid= false;
    56385633
    56395634        /*output: */
     
    56805675        rho_ice=FindParam(MaterialsRhoIceEnum);
    56815676        rho_water=FindParam(MaterialsRhoSeawaterEnum);
    5682         this->parameters->FindParam(&computeelastic,SolidearthSettingsElasticEnum);
     5677        this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum);
    56835678        this->parameters->FindParam(&scaleoceanarea,SolidearthSettingsOceanAreaScalingEnum);
    56845679
    56855680        /*retrieve precomputed G:*/
    5686         if(computeelastic)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);
     5681        if(computerigid)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);
    56875682
    56885683        /*Get area of element: precomputed in the sealevelrise_core_geometry:*/
     
    57345729        _assert_(!xIsNan<IssmDouble>(bslrice));
    57355730
    5736         if(computeelastic){
     5731        if(computerigid){
    57375732                /*convert from m to kg/m^2:*/
    57385733                I=I*rho_ice*phi;
     
    57555750        bool notfullygrounded=false;
    57565751        bool scaleoceanarea= false;
    5757         bool computeelastic= true;
     5752        bool computerigid= false;
    57585753
    57595754        /*elastic green function:*/
     
    57845779        rho_water=FindParam(MaterialsRhoSeawaterEnum);
    57855780        rho_freshwater=FindParam(MaterialsRhoFreshwaterEnum);
    5786         this->parameters->FindParam(&computeelastic,SolidearthSettingsElasticEnum);
     5781        this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum);
    57875782        this->parameters->FindParam(&scaleoceanarea,SolidearthSettingsOceanAreaScalingEnum);
    57885783
    57895784        /*retrieve precomputed G:*/
    5790         if(computeelastic)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);
     5785        if(computerigid)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);
    57915786
    57925787        /*Get area of element: precomputed in the sealevelrise_core_geometry:*/
     
    58045799        _assert_(!xIsNan<IssmDouble>(bslrhydro));
    58055800
    5806         if(computeelastic){
     5801        if(computerigid){
    58075802                /*convert from m to kg/m^2:*/
    58085803                W=W*rho_freshwater*phi;
     
    58235818        IssmDouble BP;  //change in bottom pressure (Farrel and Clarke, Equ. 4)
    58245819        IssmDouble constant;
    5825         bool computeelastic= true;
     5820        bool computeelastic= false;
    58265821
    58275822        /*elastic green function:*/
     
    59255920
    59265921        /*computational flags:*/
    5927         bool computeelastic= true;
     5922        bool computeelastic= false;
    59285923
    59295924        /*early return if we are not on the ocean or on an ice cap:*/
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r25721 r25727  
    48374837
    48384838        bool computerigid = true;
    4839         bool computeelastic= true;
    48404839
    48414840        /*recover computational flags: */
    48424841        this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum);
    4843         this->parameters->FindParam(&computeelastic,SolidearthSettingsElasticEnum);
    48444842
    48454843        /*Initialize temporary vector that will be used to sum eustatic components on all local elements, prior
     
    48534851
    48544852        /*Call the sea level rise non-eustatic core only if required: */
    4855         if(computerigid | computeelastic){
     4853        if(computerigid){
    48564854                for(Object* & object : this->elements->objects){
    48574855                        Element* element = xDynamicCast<Element*>(object);
Note: See TracChangeset for help on using the changeset viewer.