资源简介
Biome-BGC is an ecosystem process model that estimates storage and flux of carbon, nitrogen and water. Biome-BGC is a computer program that estimates fluxes and storage of energy, water, carbon, and nitrogen for the vegetation and soil components of terrestrial ecosystems.
代码片段和文件信息
/*
annual_rates.c
Functions called annually from bgc()
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
Biome-BGC version 4.2 (final release)
See copyright.txt for Copyright information
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*/
#include “bgc.h“
int annual_rates(const epconst_struct* epc epvar_struct* epv)
{
int ok=1;
if (epc->evergreen)
{
/* leaf and fineroot litterfall rates */
epv->day_leafc_litfall_increment = epv->annmax_leafc * epc->leaf_turnover / 365.0;
epv->day_frootc_litfall_increment = epv->annmax_frootc * epc->froot_turnover / 365.0;
epv->annmax_leafc = 0.0;
epv->annmax_frootc = 0.0;
}
else
{
/* deciduous: reset the litterfall rates to 0.0 for the start of the
next litterfall season */
epv->day_leafc_litfall_increment = 0.0;
epv->day_frootc_litfall_increment = 0.0;
}
if (epc->woody)
{
/* live wood turnover rates */
epv->day_livestemc_turnover_increment = epv->annmax_livestemc * epc->livewood_turnover / 365.0;
epv->day_livecrootc_turnover_increment = epv->annmax_livecrootc * epc->livewood_turnover / 365.0;
epv->annmax_livestemc = 0.0;
epv->annmax_livecrootc = 0.0;
}
return (!ok);
}
- 上一篇:Prescan多车道变道超车场景
- 下一篇:火焰检测传感器程序与原理图
相关资源
- 科研管理系统 SSH
- 科研必备|SCI全文翻译软件:优于谷歌
- 科研伦理与学术规范课后答案
- SCI论文写作和发表:You Can Do It_张俊东
- Conefor_Inputs_10英文和Conefor Sensinode 2.
- 专业Canoco软件
- 学术研究,你的成功之道 高清版 带书
-
me
taWin2.1 - 高校科研管理信息系统的设计与开发
- 某课课后作业答案:科研伦理与学术
- 科研管理系统CS.zip
- 科研伦理与学术规范研究生网课答案
- 科研伦理与学术规范答案.rar
- 杭电面向对象课程本科研究生期末考
- PC_Ord_v5.0.zip
- 科研论文写作方法与格式的要求.ppt
- 科研伦理与学术规范答案2.zip
- 科研项目管理系统 论文 毕业设计
- Getdata.Graph.Digitizer 破解
- 科研伦理与学术规范 期末考试2 40题
- 最新完整版261页像外行一样思考,像
- texstudio 2.12.6 for Windows
- ReadCube-文献阅读管理软件
- scidavis 免费安装包
- 高校科研成果管理系统
- 数量生态学
- 专业技术人员科研方法与论文写作
- 科研组图SciPicMatrix.rar
- canoco数据分析CCA、PCA、RDA
- canoco4.5破解版
评论
共有 条评论