Changeset 23971
- Timestamp:
- 05/31/19 13:02:22 (6 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyGlaDSAnalysis.cpp
r23970 r23971 122 122 iomodel->FetchDataToInput(elements,"md.hydrology.bump_height",HydrologyBumpHeightEnum); 123 123 iomodel->FetchDataToInput(elements,"md.hydrology.sheet_conductivity",HydrologySheetConductivityEnum); 124 iomodel->FetchDataToInput(elements,"md.hydrology.neumannflux",HydrologyNeumannfluxEnum,0.); 124 iomodel->FetchDataToInput(elements,"md.hydrology.neumannflux",HydrologyNeumannfluxEnum); 125 iomodel->FetchDataToInput(elements,"md.hydrology.moulin_input",HydrologyMoulinInputEnum); 125 126 iomodel->FetchDataToInput(elements,"md.initialization.watercolumn",HydrologySheetThicknessEnum); 126 127 iomodel->FetchDataToInput(elements,"md.initialization.hydraulic_potential",HydraulicPotentialEnum); -
issm/trunk-jpl/src/c/classes/Loads/Channel.cpp
r23968 r23971 348 348 /*Intermediaries */ 349 349 IssmDouble Jdet,v1,qc,fFactor,Afactor,Bfactor,Xifactor; 350 IssmDouble A,B,n,phi_old,phi,phi_0,dPw ;350 IssmDouble A,B,n,phi_old,phi,phi_0,dPw,ks,Ngrad; 351 351 IssmDouble H,h,b,dphi[2],dphids,dphimds,db[2],dbds; 352 352 IssmDouble xyz_list[NUMVERTICES][3]; … … 369 369 IssmDouble g = element->FindParam(ConstantsGEnum); 370 370 IssmDouble kc = element->FindParam(HydrologyChannelConductivityEnum); 371 IssmDouble ks = element->FindParam(HydrologySheetConductivityEnum);372 371 IssmDouble lc = element->FindParam(HydrologyChannelSheetWidthEnum); 373 372 IssmDouble c_t = element->FindParam(HydrologyPressureMeltCoefficientEnum); … … 378 377 Input* B_input = element->GetInput(MaterialsRheologyBEnum); _assert_(B_input); 379 378 Input* n_input = element->GetInput(MaterialsRheologyNEnum); _assert_(n_input); 379 Input* ks_input = element->GetInput(HydrologySheetConductivityEnum); _assert_(ks_input); 380 380 Input* phiold_input = element->GetInput(HydraulicPotentialOldEnum); _assert_(phiold_input); 381 381 Input* phi_input = element->GetInput(HydraulicPotentialEnum); _assert_(phi_input); … … 402 402 phi_input->GetInputDerivativeValue(&dphi[0],&xyz_list_tria[0][0],gauss); 403 403 h_input->GetInputValue(&h,gauss); 404 ks_input->GetInputValue(&ks,gauss); 404 405 B_input->GetInputValue(&B,gauss); 405 406 n_input->GetInputValue(&n,gauss); … … 412 413 dphids = dphi[0]*tx + dphi[1]*ty; 413 414 dphimds = rho_water*g*(db[0]*tx + db[1]*ty); 415 Ngrad = fabs(dphids); 416 if(Ngrad<1.e-12) Ngrad = 1.e-12; 414 417 415 418 /*Compute the effective conductivity Kc = k h^alpha |grad Phi|^{beta-2} (same for sheet)*/ 416 IssmDouble Kc = kc * pow(this->S,ALPHA_C) * pow( fabs(dphids),BETA_C-2.);417 IssmDouble Ks = ks * pow(h ,ALPHA_S) * pow( fabs(dphids),BETA_S-2.);419 IssmDouble Kc = kc * pow(this->S,ALPHA_C) * pow(Ngrad,BETA_C-2.); 420 IssmDouble Ks = ks * pow(h ,ALPHA_S) * pow(Ngrad,BETA_S-2.); 418 421 419 422 /*Approx. discharge in the sheet flowing folwing in the direction of the channel ofver a width lc*/ … … 479 482 IssmDouble Jdet,v2,Afactor,Bfactor,fFactor; 480 483 IssmDouble A,B,n,phi_old,phi,phi_0,dphimds; 481 IssmDouble H,h,b,db[2],dphids,qc,dPw ;484 IssmDouble H,h,b,db[2],dphids,qc,dPw,ks; 482 485 IssmDouble xyz_list[NUMVERTICES][3]; 483 486 IssmDouble xyz_list_tria[3][3]; … … 496 499 IssmDouble rho_water = element->FindParam(MaterialsRhoFreshwaterEnum); 497 500 IssmDouble kc = element->FindParam(HydrologyChannelConductivityEnum); 498 IssmDouble ks = element->FindParam(HydrologySheetConductivityEnum);499 501 IssmDouble g = element->FindParam(ConstantsGEnum); 500 502 IssmDouble lc = element->FindParam(HydrologyChannelSheetWidthEnum); … … 506 508 Input* B_input = element->GetInput(MaterialsRheologyBEnum); _assert_(B_input); 507 509 Input* n_input = element->GetInput(MaterialsRheologyNEnum); _assert_(n_input); 510 Input* ks_input = element->GetInput(HydrologySheetConductivityEnum); _assert_(ks_input); 508 511 Input* phiold_input = element->GetInput(HydraulicPotentialOldEnum); _assert_(phiold_input); 509 512 Input* phi_input = element->GetInput(HydraulicPotentialEnum); _assert_(phi_input); … … 526 529 b_input->GetInputDerivativeValue(&db[0],&xyz_list_tria[0][0],gauss); 527 530 h_input->GetInputValue(&h,gauss); 531 ks_input->GetInputValue(&ks,gauss); 528 532 B_input->GetInputValue(&B,gauss); 529 533 n_input->GetInputValue(&n,gauss); … … 585 589 586 590 /*Intermediaries */ 587 IssmDouble A,B,n,phi,phi_0 ;591 IssmDouble A,B,n,phi,phi_0,ks,Ngrad; 588 592 IssmDouble H,h,b,dphi[2],dphids,dphimds,db[2],dbds; 589 593 IssmDouble xyz_list[NUMVERTICES][3]; … … 599 603 IssmDouble g = element->FindParam(ConstantsGEnum); 600 604 IssmDouble kc = element->FindParam(HydrologyChannelConductivityEnum); 601 IssmDouble ks = element->FindParam(HydrologySheetConductivityEnum);602 605 IssmDouble lc = element->FindParam(HydrologyChannelSheetWidthEnum); 603 606 IssmDouble c_t = element->FindParam(HydrologyPressureMeltCoefficientEnum); … … 609 612 Input* B_input = element->GetInput(MaterialsRheologyBEnum); _assert_(B_input); 610 613 Input* n_input = element->GetInput(MaterialsRheologyNEnum); _assert_(n_input); 614 Input* ks_input = element->GetInput(HydrologySheetConductivityEnum); _assert_(ks_input); 611 615 Input* phiold_input = element->GetInput(HydraulicPotentialOldEnum); _assert_(phiold_input); 612 616 Input* phi_input = element->GetInput(HydraulicPotentialEnum); _assert_(phi_input); … … 626 630 phi_input->GetInputDerivativeValue(&dphi[0],&xyz_list_tria[0][0],gauss); 627 631 h_input->GetInputValue(&h,gauss); 632 ks_input->GetInputValue(&ks,gauss); 628 633 B_input->GetInputValue(&B,gauss); 629 634 n_input->GetInputValue(&n,gauss); … … 636 641 dphids = dphi[0]*tx + dphi[1]*ty; 637 642 dphimds = rho_water*g*(db[0]*tx + db[1]*ty); 643 Ngrad = fabs(dphids); 644 if(Ngrad<1.e-12) Ngrad = 1.e-12; 638 645 639 646 /*Compute the effective conductivity Kc = k h^alpha |grad Phi|^{beta-2} (same for sheet)*/ 640 IssmDouble Kc = kc * pow(this->S,ALPHA_C) * pow( fabs(dphids),BETA_C-2.);641 IssmDouble Ks = ks * pow(h ,ALPHA_S) * pow( fabs(dphids),BETA_S-2.);647 IssmDouble Kc = kc * pow(this->S,ALPHA_C) * pow(Ngrad,BETA_C-2.); 648 IssmDouble Ks = ks * pow(h ,ALPHA_S) * pow(Ngrad,BETA_S-2.); 642 649 643 650 /*Approx. discharge in the sheet flowing folwing in the direction of the channel ofver a width lc*/ -
issm/trunk-jpl/src/c/classes/Loads/Moulin.cpp
r23960 r23971 159 159 160 160 switch(analysis_type){ 161 case HydrologyGlaDSAnalysisEnum: 162 pe = this->CreatePVectorHydrologyGlaDS(); 163 break; 161 164 case HydrologyShaktiAnalysisEnum: 162 165 pe = this->CreatePVectorHydrologyShakti(); … … 310 313 /*}}}*/ 311 314 315 ElementVector* Moulin::CreatePVectorHydrologyGlaDS(void){/*{{{*/ 316 317 /*If this node is not the master node (belongs to another partition of the 318 * mesh), don't add the moulin input a second time*/ 319 if(node->IsClone()) return NULL; 320 321 IssmDouble moulin_load; 322 323 /*Initialize Element matrix*/ 324 ElementVector* pe=new ElementVector(&node,1,this->parameters); 325 326 this->element->GetInputValue(&moulin_load,node,HydrologyMoulinInputEnum); 327 pe->values[0]=moulin_load; 328 329 /*Clean up and return*/ 330 return pe; 331 } 332 /*}}}*/ 312 333 ElementVector* Moulin::CreatePVectorHydrologyShakti(void){/*{{{*/ 313 334 -
issm/trunk-jpl/src/c/classes/Loads/Moulin.h
r23959 r23971 77 77 78 78 ElementVector* CreatePVectorHydrologyShakti(void); 79 ElementVector* CreatePVectorHydrologyGlaDS(void); 79 80 ElementVector* CreatePVectorHydrologyDCInefficient(void); 80 81 ElementVector* CreatePVectorHydrologyDCEfficient(void);
Note:
See TracChangeset
for help on using the changeset viewer.