From 6476f5f49b373cd4cf05f2e73389df83e437d597 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 13 Feb 2025 16:30:31 +0100 Subject: Axis legend formatting, update vignettes --- docs/dev/reference/create_deg_func.html | 196 -------------------------------- 1 file changed, 196 deletions(-) delete mode 100644 docs/dev/reference/create_deg_func.html (limited to 'docs/dev/reference/create_deg_func.html') diff --git a/docs/dev/reference/create_deg_func.html b/docs/dev/reference/create_deg_func.html deleted file mode 100644 index fd8325c0..00000000 --- a/docs/dev/reference/create_deg_func.html +++ /dev/null @@ -1,196 +0,0 @@ - -Create degradation functions for known analytical solutions — create_deg_func • mkin - - -
-
- - - -
-
- - -
-

Create degradation functions for known analytical solutions

-
- -
-
create_deg_func(spec, use_of_ff = c("min", "max"))
-
- -
-

Arguments

-
spec
-

List of model specifications as contained in mkinmod objects

- - -
use_of_ff
-

Minimum or maximum use of formation fractions

- -
-
-

Value

- - -

Degradation function to be attached to mkinmod objects

-
- -
-

Examples

-

-SFO_SFO <- mkinmod(
-  parent = mkinsub("SFO", "m1"),
-  m1 = mkinsub("SFO"))
-#> Temporary DLL for differentials generated and loaded
-FOCUS_D <- subset(FOCUS_2006_D, value != 0) # to avoid warnings
-fit_1 <- mkinfit(SFO_SFO, FOCUS_D, solution_type = "analytical", quiet = TRUE)
-# \dontrun{
-fit_2 <- mkinfit(SFO_SFO, FOCUS_D, solution_type = "deSolve", quiet = TRUE)
-if (require(rbenchmark))
-  benchmark(
-    analytical = mkinfit(SFO_SFO, FOCUS_D, solution_type = "analytical", quiet = TRUE),
-    deSolve = mkinfit(SFO_SFO, FOCUS_D, solution_type = "deSolve", quiet = TRUE),
-    replications = 2)
-#> Loading required package: rbenchmark
-#>         test replications elapsed relative user.self sys.self user.child
-#> 1 analytical            2   0.235    1.000     0.235        0          0
-#> 2    deSolve            2   0.294    1.251     0.294        0          0
-#>   sys.child
-#> 1         0
-#> 2         0
-  DFOP_SFO <- mkinmod(
-    parent = mkinsub("DFOP", "m1"),
-    m1 = mkinsub("SFO"))
-#> Temporary DLL for differentials generated and loaded
-  benchmark(
-    analytical = mkinfit(DFOP_SFO, FOCUS_D, solution_type = "analytical", quiet = TRUE),
-    deSolve = mkinfit(DFOP_SFO, FOCUS_D, solution_type = "deSolve", quiet = TRUE),
-    replications = 2)
-#>         test replications elapsed relative user.self sys.self user.child
-#> 1 analytical            2   0.374    1.000     0.374        0          0
-#> 2    deSolve            2   0.527    1.409     0.526        0          0
-#>   sys.child
-#> 1         0
-#> 2         0
-# }
-
-
-
- -
- - -
- - - - - - - - -- cgit v1.2.1