diff options
| author | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 18:01:11 +0200 |
|---|---|---|
| committer | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 18:01:11 +0200 |
| commit | e0c130005ee7adbac9b832ea8157712419d51b7e (patch) | |
| tree | f5c188285ee3abd9edda16a6bb96b6142c80afba /docs/reference/chent_focus_sw.md | |
| parent | f8fdbc3237d12d5511058d2c0c40f3e99debe682 (diff) | |
Update static docs
Diffstat (limited to 'docs/reference/chent_focus_sw.md')
| -rw-r--r-- | docs/reference/chent_focus_sw.md | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/docs/reference/chent_focus_sw.md b/docs/reference/chent_focus_sw.md new file mode 100644 index 0000000..b4ed108 --- /dev/null +++ b/docs/reference/chent_focus_sw.md @@ -0,0 +1,66 @@ +# Create a chemical compound object for FOCUS Step 1 calculations + +Create a chemical compound object for FOCUS Step 1 calculations + +## Usage + +``` r +chent_focus_sw( + name, + Koc, + DT50_ws = NA, + DT50_soil = NA, + DT50_water = NA, + DT50_sediment = NA, + cwsat = 1000, + mw = NA, + max_soil = 1, + max_ws = 1 +) +``` + +## Arguments + +- name: + + Length one character vector containing the name + +- Koc: + + Partition coefficient between organic carbon and water in L/kg. + +- DT50_ws: + + Half-life in water/sediment systems in days + +- DT50_soil: + + Half-life in soil in days + +- DT50_water: + + Half-life in water in days (Step 2) + +- DT50_sediment: + + Half-life in sediment in days (Step 2) + +- cwsat: + + Water solubility in mg/L + +- mw: + + Molar weight in g/mol. + +- max_soil: + + Maximum observed fraction (dimensionless) in soil + +- max_ws: + + Maximum observed fraction (dimensionless) in water/sediment systems + +## Value + +A list with the substance specific properties |
