NutrientCommon.h
Go to the documentation of this file.
1/*!
2 * \file NutrientCommon.h
3 * \brief Define some common used function in Nutrient cycling modules, e.g., NUTRMV, NUTRSED
4 * \author Liang-Jun Zhu
5 * \date 2016-9-28
6 */
7#ifndef SEIMS_NUTRIENT_COMMON_H
8#define SEIMS_NUTRIENT_COMMON_H
9#include "seims.h"
10
11/*!
12 * \defgroup NutrientCommon
13 * \ingroup common_algorithm
14 * \brief Functions for climate related intermediate parameters.
15 */
16
17/*!
18 * \ingroup NutrientCommon
19 * \brief Calculate enrichment ratio for nutrient transport with runoff and sediment
20 * enrsb.f of SWAT
21 * \param[in] sedyld sediment yield, kg
22 * \param[in] surfq surface runoff, mm
23 * \param[in] area area, ha
24 */
25FLTPT CalEnrichmentRatio(FLTPT sedyld, FLTPT surfq, FLTPT area);
26
27#endif /* SEIMS_NUTRIENT_COMMON_H */
FLTPT CalEnrichmentRatio(FLTPT sedyld, FLTPT surfq, FLTPT area)
Calculate enrichment ratio for nutrient transport with runoff and sediment enrsb.f of SWAT.
The SEIMS related definitions and utilities header.