-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to code for Esoil in sparse vegetation. #315
Changes from 1 commit
649243c
d958240
c3b772b
19ce733
c48f178
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -300,6 +300,9 @@ double func_surf_energy_bal(double Ts, va_list ap) | |
double tmp_displacement[3]; | ||
double tmp_roughness[3]; | ||
double tmp_ref_height[3]; | ||
double ga_veg; | ||
double ga_bare; | ||
double ga_average; | ||
|
||
/************************************ | ||
Read variables from variable list | ||
|
@@ -688,6 +691,32 @@ double func_surf_energy_bal(double Ts, va_list ap) | |
else | ||
Ra_used[0] = HUGE_RESIST; | ||
|
||
if (veg_var->vegcover < 1) { | ||
if (Ra_used[0] > 0) { | ||
ga_veg = 1/Ra_used[0]; | ||
tmp_wind[0] = wind[0]; | ||
tmp_wind[1] = -999.; | ||
tmp_wind[2] = -999.; | ||
tmp_height = soil_con->rough/0.123; | ||
tmp_displacement[0] = calc_veg_displacement(tmp_height); | ||
tmp_roughness[0] = soil_con->rough; | ||
tmp_ref_height[0] = 10; | ||
Error = CalcAerodynamic(0,0,0,soil_con->snow_rough,soil_con->rough,0,Ra_bare,tmp_wind,tmp_displacement,tmp_ref_height,tmp_roughness); | ||
Ra_bare[0] /= StabilityCorrection(tmp_ref_height[0], tmp_displacement[0], TMean, Tair, tmp_wind[0], tmp_roughness[0]); | ||
if (Ra_bare[0] > 0) { | ||
ga_bare = 1/Ra_bare[0]; | ||
ga_average = veg_var->vegcover*ga_veg + (1-veg_var->vegcover)*ga_bare; | ||
Ra_used[0] = 1/ga_average; | ||
} | ||
else { | ||
Ra_used[0] = 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be zero or infinite (or does it not matter because it means that the value is not used?) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be zero. Ra of 0 means infinite conductance. Perhaps some of the confusion here is due to the naming of the variables. Before I added this feature, Ra_used was the Ra of the entire veg tile. Since vegcover was assumed == 1.0 in the past, Ra_used was also the Ra of the vegetated portion (which was 100% of the tile). When I added this block, I intended to adjust Ra_used for the presence of exposed soil. In this case, the old Ra_used now initially only pertains to the vegetated portion (which is < 100% of the tile), and gets reassigned to the value pertaining to the entire tile later on. So, what we have is: What if I add another intermediate variable to make this clearer: Ra_veg. Ra_veg will be assigned = Ra_used at the beginning of this block. Then, ga_veg = 1/Ra_veg. ga_avg = weighted average as currently stated. Then, Ra_used = 1/ga_avg. This will hopefully make it clearer that Ra_used = 0 if either Ra_veg or Ra_bare are 0. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes - that would be much easier to understand - please go ahead. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, done. |
||
} | ||
} | ||
else { | ||
Ra_used[0] = 0; | ||
} | ||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Still needs those comments. The hardcoded values need to be moved to header files. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But I added several lines of comments... It needs more? Which lines in particular need comments? |
||
/************************************************* | ||
Compute Evapotranspiration if not snow covered | ||
|
||
|
@@ -709,20 +738,11 @@ double func_surf_energy_bal(double Ts, va_list ap) | |
transp[i] = layer[i].evap; | ||
layer[i].evap = 0; | ||
} | ||
tmp_wind[0] = wind[0]; | ||
tmp_wind[1] = -999.; | ||
tmp_wind[2] = -999.; | ||
tmp_height = soil_con->rough/0.123; | ||
tmp_displacement[0] = calc_veg_displacement(tmp_height); | ||
tmp_roughness[0] = soil_con->rough; | ||
tmp_ref_height[0] = 10; | ||
Error = CalcAerodynamic(0,0,0,soil_con->snow_rough,soil_con->rough,0,Ra_bare,tmp_wind,tmp_displacement,tmp_ref_height,tmp_roughness); | ||
Ra_bare[0] /= StabilityCorrection(tmp_ref_height[0], tmp_displacement[0], TMean, Tair, tmp_wind[0], tmp_roughness[0]); | ||
Evap *= veg_var->vegcover; | ||
Evap += (1-veg_var->vegcover) | ||
* arno_evap(layer, surf_atten*NetBareRad, Tair, vpd, | ||
depth[0], max_moist * depth[0] * 1000., | ||
elevation, b_infilt, Ra_bare[0], delta_t, | ||
elevation, b_infilt, Ra_used[0], delta_t, | ||
resid_moist[0], frost_fract); | ||
for (i=0; i<options.Nlayer; i++) { | ||
layer[i].evap = veg_var->vegcover*transp[i] + (1-veg_var->vegcover)*layer[i].evap; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jhamman commented: why 100.0?
@tbohn's reply: 100 gives better results than 0 or 200, from tests I conducted at eddy covariance towers. I didn't do a fancy Bayesian parameter estimation, not enough time for that. I apologize for making this a hard-wired value - I considered making it another input soil parameter, but we have so many of those already. And this likely won't noticeably affect anyone who has been using the traditional VIC set-up, since bare soil rarely occurs in the traditional parameters.