Changeset 25727
- Timestamp:
- 10/30/20 21:08:02 (4 years ago)
- 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 5446 5446 5447 5447 /*Computational flags:*/ 5448 bool computerigid = true;5449 bool computeelastic = true;5448 bool computerigid = false; 5449 bool computeelastic = false; 5450 5450 int horiz; 5451 5451 … … 5463 5463 this->inputs->SetDoubleInput(AreaEnum,this->lid,area); 5464 5464 this->AddInput(SealevelAreaEnum,&area,P0Enum); 5465 if(!computerigid & !computeelastic)return;5466 5465 5467 5466 /*recover precomputed green function kernels:*/ … … 5519 5518 5520 5519 /*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]; 5527 5522 G[i]=G[i]*constant; 5528 5523 … … 5609 5604 this->inputs->SetDoubleInput(AreaEnum,this->lid,area); 5610 5605 this->AddInput(SealevelAreaEnum,&area,P0Enum); 5611 5612 /*Free allocations:*/ 5613 #ifdef _HAVE_RESTRICT_5614 delete indices;5615 delete G;5616 #else5617 xDelete(indices);5618 xDelete(G);5619 #endif5620 }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 5621 5616 } else { /*computerigid==false*/ 5622 5617 // do nothing … … 5635 5630 bool notfullygrounded=false; 5636 5631 bool scaleoceanarea= false; 5637 bool compute elastic= true;5632 bool computerigid= false; 5638 5633 5639 5634 /*output: */ … … 5680 5675 rho_ice=FindParam(MaterialsRhoIceEnum); 5681 5676 rho_water=FindParam(MaterialsRhoSeawaterEnum); 5682 this->parameters->FindParam(&compute elastic,SolidearthSettingsElasticEnum);5677 this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum); 5683 5678 this->parameters->FindParam(&scaleoceanarea,SolidearthSettingsOceanAreaScalingEnum); 5684 5679 5685 5680 /*retrieve precomputed G:*/ 5686 if(compute elastic)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);5681 if(computerigid)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize); 5687 5682 5688 5683 /*Get area of element: precomputed in the sealevelrise_core_geometry:*/ … … 5734 5729 _assert_(!xIsNan<IssmDouble>(bslrice)); 5735 5730 5736 if(compute elastic){5731 if(computerigid){ 5737 5732 /*convert from m to kg/m^2:*/ 5738 5733 I=I*rho_ice*phi; … … 5755 5750 bool notfullygrounded=false; 5756 5751 bool scaleoceanarea= false; 5757 bool compute elastic= true;5752 bool computerigid= false; 5758 5753 5759 5754 /*elastic green function:*/ … … 5784 5779 rho_water=FindParam(MaterialsRhoSeawaterEnum); 5785 5780 rho_freshwater=FindParam(MaterialsRhoFreshwaterEnum); 5786 this->parameters->FindParam(&compute elastic,SolidearthSettingsElasticEnum);5781 this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum); 5787 5782 this->parameters->FindParam(&scaleoceanarea,SolidearthSettingsOceanAreaScalingEnum); 5788 5783 5789 5784 /*retrieve precomputed G:*/ 5790 if(compute elastic)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize);5785 if(computerigid)this->inputs->GetArrayPtr(SealevelriseGEnum,this->lid,&G,&gsize); 5791 5786 5792 5787 /*Get area of element: precomputed in the sealevelrise_core_geometry:*/ … … 5804 5799 _assert_(!xIsNan<IssmDouble>(bslrhydro)); 5805 5800 5806 if(compute elastic){5801 if(computerigid){ 5807 5802 /*convert from m to kg/m^2:*/ 5808 5803 W=W*rho_freshwater*phi; … … 5823 5818 IssmDouble BP; //change in bottom pressure (Farrel and Clarke, Equ. 4) 5824 5819 IssmDouble constant; 5825 bool computeelastic= true;5820 bool computeelastic= false; 5826 5821 5827 5822 /*elastic green function:*/ … … 5925 5920 5926 5921 /*computational flags:*/ 5927 bool computeelastic= true;5922 bool computeelastic= false; 5928 5923 5929 5924 /*early return if we are not on the ocean or on an ice cap:*/ -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r25721 r25727 4837 4837 4838 4838 bool computerigid = true; 4839 bool computeelastic= true;4840 4839 4841 4840 /*recover computational flags: */ 4842 4841 this->parameters->FindParam(&computerigid,SolidearthSettingsRigidEnum); 4843 this->parameters->FindParam(&computeelastic,SolidearthSettingsElasticEnum);4844 4842 4845 4843 /*Initialize temporary vector that will be used to sum eustatic components on all local elements, prior … … 4853 4851 4854 4852 /*Call the sea level rise non-eustatic core only if required: */ 4855 if(computerigid | computeelastic){4853 if(computerigid){ 4856 4854 for(Object* & object : this->elements->objects){ 4857 4855 Element* element = xDynamicCast<Element*>(object);
Note:
See TracChangeset
for help on using the changeset viewer.