Changes between Version 8 and Version 9 of Documentation/Frac_Nobio


Ignore:
Timestamp:
2016-05-18T08:40:45+02:00 (8 years ago)
Author:
aducharne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Frac_Nobio

    v8 v9  
    6363- the water fluxes that leave the soil are (i) the surface runoff, drainage, and bare soil evaporation (evapnu), which are produced over SUM(soiltile(ji,:))=vegtot+totfrac_nobio, (ii) the transpiration and interception loss, which are only produced from the PFT 2 to nvm, corresponding to soiltile(ji,2)+soiltile(ji,3). This sends back to my question regarding enerbil, although I don't imply this is wrongly done in the code. 
    6464 
     65AD: a point that raises doubt on the use of frac_nobio and vegtot in hydrol is that it is different from its use in hydrolc (Choisnel), in which the "soil" fraction does not include frac_nobio. Despite this difference, the water budget calculations are very similar in hydrol_waterbal and hydrolc_waterbal: 
     66- hydrolc_waterbal:  
     67{{{ 
     68tot_water_end(ji) = (mean_bqsb(ji) + mean_gqsb(ji))*vegtot(ji) + & 
     69            & watveg(ji) + snow(ji) + sum_snow_nobio(ji) 
     70tot_flux(ji) =  precip_rain(ji) + precip_snow(ji) + returnflow(ji) + reinfiltration(ji) + irrigation(ji) - & 
     71             & sum_vevapwet(ji) - sum_transpir(ji) - vevapnu(ji) - vevapsno(ji) - vevapflo(ji) + & 
     72             & floodout(ji)- run_off_tot(ji) - drainage(ji) 
     73}}} 
    6574 
     75- hydrol_waterbal:       
     76{{{ 
     77tot_water_end(ji) = humtot(ji)*vegtot(ji) + watveg + & 
     78            & snow(ji) + SUM(snow_nobio(ji,:)) 
     79tot_flux(ji) =  precip_rain(ji) + precip_snow(ji) + irrigation (ji) - & 
     80            & SUM(vevapwet(ji,:)) - SUM(transpir(ji,:)) - vevapnu(ji) - vevapsno(ji) - vevapflo(ji) + & 
     81            & floodout(ji) - runoff(ji) - drainage(ji) + returnflow(ji) + reinfiltration(ji) 
     82}}} 
     83 
     84- which was the model for the new total water budget residu (twbr) diagnostic: 
     85{{{ 
     86twbr(ji) = (vegtot(ji)*delsoilmoist(ji) + delintercept(ji) + delswe(ji)) & 
     87            - ( precip_rain(ji) + precip_snow(ji) + irrigation(ji) + floodout(ji) & 
     88               + returnflow(ji) + reinfiltration(ji) ) & 
     89            + ( runoff(ji) + drainage(ji) + SUM(vevapwet(ji,:)) & 
     90                + SUM(transpir(ji,:)) + vevapnu(ji) + vevapsno(ji) + vevapflo(ji) )  
     91}}} 
    6692== thermosoil == 
    6793