set_parameter_value: Set a parameter with a new value

Description Usage Arguments Value Examples

View source: R/modify.R

Description

Set a parameter with a new value

Usage

1
set_parameter_value(l, parameter, value)

Arguments

l

the list of apsimx file

parameter

the name of parameter with APSIM NG specification

value

the new value

Value

A list with replaced value

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 wheat <- read_apsimx(system.file("Wheat.json", package = "rapsimng"))
 new_wheat <- set_parameter_value(wheat,
  "[Structure].BranchingRate.PotentialBranchingRate.Reproductive.Zero.FixedValue",
  1)
new_wheat2 <- search_path(new_wheat,
    "[Structure].BranchingRate.PotentialBranchingRate.Reproductive.Zero")
new_wheat2$node$FixedValue

new_wheat <- set_parameter_value(
    wheat,
    "[Structure].HeightModel.WaterStress.XYPairs.Y",
    "0.1,1.1")
new_wheat2 <- search_path(new_wheat,
    "[Structure].HeightModel.WaterStress.XYPairs")
new_wheat2$node$Y

rapsimng documentation built on Sept. 9, 2021, 9:07 a.m.