Skip to content

Commit

Permalink
feat[DEI-115]: tutorial response_curve updated
Browse files Browse the repository at this point in the history
  • Loading branch information
wschoonveld committed Aug 3, 2023
1 parent 4d16cbe commit 7734e52
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions docs/tutorials/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,10 @@ FORMAT
- response_curve_rule:
name: <name_of_rule_in_text>
description: <description_of_rule_in_text>
input_values: [<list_with_the_limit_values>]
output_values: [<list_with_the_response_values>]
response_table:
- [ "input", "output"]
- [<limit_value>, <response_value>]
- [<limit_value>, <response_value>]
input_variable: <one_input_variable_name>
output_variable: <one_output_variable_name>
```
Expand All @@ -295,9 +297,16 @@ The rule needs to be applied to an existing 2D/3D variable with or without time
- response_curve_rule:
name: HSI Pond weed water depth
description: Reponse of Pond weed (Potamogeton nodosus) to water depth
input_values: [-999.0, 0.0, 0.5, 1.0, 2.0, 999.0]
output_values: [ 0.0, 0.0, 1.0, 1.0, 0.0, 0.0]
response_table:
- ["input", "output"]
- [-999.0 , 0.0 ]
- [ 0.0 , 0.0 ]
- [ 0.5 , 1.0 ]
- [ 1.0 , 1.0 ]
- [ 2.0 , 0.0 ]
- [ 999.0 , 0.0 ]
input_variable: water_depth
output_variable: HSI_Pnodosus_water_depth
```

Expand Down

0 comments on commit 7734e52

Please sign in to comment.