Changeset 16034


Ignore:
Timestamp:
08/30/13 10:24:28 (12 years ago)
Author:
seroussi
Message:

CHG: using GetInputOnVertices in enthalpy modules

File:
1 edited

Legend:

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

    r16033 r16034  
    47684768                                for(i=0;i<numdof;i++) pe->values[i]+=scalar*basis[i];
    47694769                        }
    4770                         else{
    4771                                 /*do nothing (water layer acts as insulation)*/
    4772                         }
     4770                        else{  /*do nothing (water layer acts as insulation)*/  }
    47734771                }
    47744772        }
     
    53085306        IssmDouble  xyz_list[NUMVERTICES][3];
    53095307        IssmDouble  xyz_list_tria[NUMVERTICES2D][3];
    5310         IssmDouble  heatflux, geothermalflux_value,kappa;
     5308        IssmDouble  heatflux,kappa;
    53115309        IssmDouble  vec_heatflux[3];
    53125310        IssmDouble  normal_base[3], d1enthalpy[3];
    5313         IssmDouble  basalmeltingrate[NUMVERTICES], watercolumn[NUMVERTICES], meltingrate_enthalpy;
     5311        IssmDouble  basalmeltingrate[NUMVERTICES], watercolumn[NUMVERTICES];
    53145312        IssmDouble  enthalpy[NUMVERTICES], enthalpyup;
    5315         IssmDouble  pressure, pressureup;
     5313        IssmDouble  pressure[NUMVERTICES], pressureup;
    53165314        IssmDouble  temperature, waterfraction;
    53175315        IssmDouble  latentheat, rho_ice;
    53185316        IssmDouble  basalfriction, alpha2;
    5319         IssmDouble  vx,vy,vz,dt,connectivity;
     5317        IssmDouble  vx[NUMVERTICES],vy[NUMVERTICES],vz[NUMVERTICES];
     5318        IssmDouble  geothermalflux[NUMVERTICES];
     5319        IssmDouble  dt,meltingrate_enthalpy;
    53205320        Friction   *friction  = NULL;
    53215321
     
    53305330        latentheat=matpar->GetLatentHeat();
    53315331        rho_ice=this->matpar->GetRhoIce();
    5332         Input* watercolumn_input=inputs->GetInput(WatercolumnEnum);                    _assert_(watercolumn_input);
    5333         Input* basalmeltingrate_input=inputs->GetInput(BasalforcingsMeltingRateEnum);  _assert_(basalmeltingrate_input);
    5334         Input* enthalpy_input=inputs->GetInput(EnthalpyEnum);                          _assert_(enthalpy_input);
    5335         Input* pressure_input=inputs->GetInput(PressureEnum);                          _assert_(pressure_input);
    5336         Input* vx_input=inputs->GetInput(VxEnum);                                      _assert_(vx_input);
    5337         Input* vy_input=inputs->GetInput(VyEnum);                                      _assert_(vy_input);
    5338         Input* vz_input=inputs->GetInput(VzEnum);                                      _assert_(vz_input);
    5339         Input* geothermalflux_input=inputs->GetInput(BasalforcingsGeothermalfluxEnum); _assert_(geothermalflux_input);
     5332        GetInputListOnVertices(&vx[0],VxEnum);
     5333        GetInputListOnVertices(&vy[0],VyEnum);
     5334        GetInputListOnVertices(&vz[0],VzEnum);
     5335        GetInputListOnVertices(&enthalpy[0],EnthalpyEnum);
     5336        GetInputListOnVertices(&pressure[0],PressureEnum);
     5337        GetInputListOnVertices(&watercolumn[0],WatercolumnEnum);
     5338        GetInputListOnVertices(&basalmeltingrate[0],BasalforcingsMeltingRateEnum);
     5339        GetInputListOnVertices(&geothermalflux[0],BasalforcingsGeothermalfluxEnum);
     5340        Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input);
    53405341
    53415342        for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j];
     
    53495350        GaussPenta* gaussup=new GaussPenta();
    53505351        for(int iv=0;iv<3;iv++){
     5352
    53515353                gauss->GaussVertex(iv);
    53525354                gaussup->GaussVertex(iv+3);
    5353 
    53545355                checkpositivethickness=true;
    5355                 watercolumn_input->GetInputValue(&watercolumn[iv], gauss);
    5356                 basalmeltingrate_input->GetInputValue(&basalmeltingrate[iv],gauss);
    5357                 enthalpy_input->GetInputValue(&enthalpy[iv], gauss);
    5358                 pressure_input->GetInputValue(&pressure, gauss);
    53595356
    53605357                /*Calculate basal meltingrate after Fig.5 of A.Aschwanden 2012*/
    53615358                meltingrate_enthalpy=0.;
    5362                 if((watercolumn[iv]>0.) && (enthalpy[iv]<matpar->PureIceEnthalpy(pressure))){
     5359                if((watercolumn[iv]>0.) && (enthalpy[iv]<matpar->PureIceEnthalpy(pressure[iv]))){
    53635360                        /*ensure that no ice is at T<Tm(p), if water layer present*/
    5364                         enthalpy[iv]=matpar->PureIceEnthalpy(pressure);
     5361                        enthalpy[iv]=matpar->PureIceEnthalpy(pressure[iv]);
    53655362                        //meltingrate_enthalpy=0.;
    53665363                }
    5367                 else if(enthalpy[iv]<matpar->PureIceEnthalpy(pressure)){
     5364                else if(enthalpy[iv]<matpar->PureIceEnthalpy(pressure[iv])){
    53685365                        /*cold base: set q*n=q_geo*n+frictionheating as Neumann BC in Penta::CreatePVectorEnthalpySheet*/
    53695366                        meltingrate_enthalpy=0.;
     
    53755372                        /*ok, from here on all basal ice is temperate. Check for positive thickness of layer of temperate ice. */
    53765373                        istemperatelayer=false;
    5377                         enthalpy_input->GetInputValue(&enthalpyup, gaussup);
    5378                         pressure_input->GetInputValue(&pressureup, gaussup);   
    5379                         if(enthalpyup>=matpar->PureIceEnthalpy(pressureup)) istemperatelayer=true;
     5374                        if(enthalpy[iv+3]>=matpar->PureIceEnthalpy(pressure[iv+3])) istemperatelayer=true;
    53805375                        if(istemperatelayer) for(i=0;i<3;i++) vec_heatflux[i]=0.;
    53815376                        else{
    53825377                                enthalpy_input->GetInputDerivativeValue(&d1enthalpy[0],&xyz_list[0][0],gauss);
    5383                                 kappa=matpar->GetEnthalpyDiffusionParameter(enthalpy[iv],pressure);
     5378                                kappa=matpar->GetEnthalpyDiffusionParameter(enthalpy[iv],pressure[iv]);
    53845379                                for(i=0;i<3;i++) vec_heatflux[i]=-kappa*d1enthalpy[i];
    53855380                        }
     
    53895384                        heatflux=0.;
    53905385                        for(i=0;i<3;i++) heatflux+=(vec_heatflux[i])*normal_base[i];
    5391                         geothermalflux_input->GetInputValue(&geothermalflux_value,gauss);
    53925386
    53935387                        /*basal friction*/
    53945388                        friction->GetAlpha2(&alpha2,gauss,VxEnum,VyEnum,VzEnum);
    5395                         vx_input->GetInputValue(&vx,gauss);
    5396                         vy_input->GetInputValue(&vy,gauss);
    5397                         vz_input->GetInputValue(&vz,gauss);
    5398                         basalfriction=alpha2*(pow(vx,2.0)+pow(vy,2.0)+pow(vz,2.0));
    5399 
    5400                         matpar->EnthalpyToThermal(&temperature, &waterfraction, enthalpy[iv],pressure);
    5401                         meltingrate_enthalpy=(basalfriction-(heatflux-geothermalflux_value))/((1-waterfraction)*latentheat*rho_ice); // m/yr water equivalent
     5389                        basalfriction=alpha2*(pow(vx[iv],2.0)+pow(vy[iv],2.0)+pow(vz[iv],2.0));
     5390
     5391                        matpar->EnthalpyToThermal(&temperature, &waterfraction, enthalpy[iv],pressure[iv]);
     5392                        meltingrate_enthalpy=(basalfriction-(heatflux-geothermalflux[iv]))/((1-waterfraction)*latentheat*rho_ice); // m/yr water equivalent
    54025393                }
    54035394
    54045395                /*Update water column, basal meltingrate*/
    5405                 connectivity=IssmDouble(vertices[iv]->Connectivity());
    5406                 meltingrate_enthalpy/=connectivity; // divide meltingrate_enthalpy by connectivity to address multiple iterations over vertex
    54075396                basalmeltingrate[iv]+=meltingrate_enthalpy;
    54085397                this->parameters->FindParam(&dt,TimesteppingTimeStepEnum);
     
    54315420        IssmDouble enthalpy[NUMVERTICES], pressure[NUMVERTICES];
    54325421        IssmDouble latentheat, dt;
    5433         IssmDouble connectivity;
    54345422        GaussPenta* gauss;
    54355423
    5436         Input* watercolumn_input=inputs->GetInput(WatercolumnEnum);       _assert_(watercolumn_input);
    5437         Input* enthalpy_input=inputs->GetInput(EnthalpyEnum);             _assert_(enthalpy_input);
    5438         Input* pressure_input=inputs->GetInput(PressureEnum);             _assert_(pressure_input);
     5424        Input* watercolumn_input=inputs->GetInput(WatercolumnEnum); _assert_(watercolumn_input);
     5425        Input* enthalpy_input=inputs->GetInput(EnthalpyEnum);       _assert_(enthalpy_input);
     5426        Input* pressure_input=inputs->GetInput(PressureEnum);       _assert_(pressure_input);
    54395427
    54405428        /*Check wether enthalpy is activated*/
     
    54535441
    54545442                /*drain water fraction & update enthalpy*/
    5455                 // TODO: replace connectivity-wise draining by draining once per node per timestep
    5456                 connectivity=IssmDouble(vertices[iv]->Connectivity());
    5457                 waterfraction[iv]-=DrainageFunctionWaterfraction(waterfraction[iv], dt)/connectivity;
     5443                waterfraction[iv]-=DrainageFunctionWaterfraction(waterfraction[iv], dt);
    54585444                matpar->ThermalToEnthalpy(&enthalpy[iv], temperature[iv], waterfraction[iv], pressure[iv]);       
    54595445        }
Note: See TracChangeset for help on using the changeset viewer.