Skip to contents

tag: curve, a curve

Usage

prj_curve(name, coords, values)

Arguments

name

string: Name of the curve

coords

string | numeric: Coordinates at which the curve's values are given

values

string | numeric: Values of the curve at the given coordinates

Examples

prj_curve(name = "Dirichlet_temporal",
             coords = "0 3",
             values = "200 200")
#> $name
#> [1] "Dirichlet_temporal"
#> 
#> $coords
#> [1] 0 3
#> 
#> $values
#> [1] 200 200
#> 
#> $xpath
#> [1] "curves/curve"                                                                            
#> [2] "processes/process/porous_medium/porous_medium/capillary_pressure/curve"                  
#> [3] "processes/process/material_property/porous_medium/porous_medium/capillary_pressure/curve"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> [1] "coords" "values"
#> 
#> attr(,"class")
#> [1] "prj_curve"