From 10ea602c1a4e53803891950b3cc89f7e871a3639 Mon Sep 17 00:00:00 2001 From: Rimjhim Mittal Date: Fri, 22 Mar 2024 03:14:14 +0530 Subject: [PATCH] issue #515 --- src/modeci_mdf/mdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modeci_mdf/mdf.py b/src/modeci_mdf/mdf.py index bf7b4dac..c5ecb5d2 100644 --- a/src/modeci_mdf/mdf.py +++ b/src/modeci_mdf/mdf.py @@ -163,7 +163,7 @@ class Parameter(MdfBase): default_initial_value: The initial value of the parameter, only used when parameter is stateful. time_derivative: How the parameter changes with time, i.e. ds/dt. Units of time are seconds. function: Which of the in-build MDF functions (linear etc.) this uses, See - https://mdf.readthedocs.io/en/latest/api/MDF_function_specifications.html + https://mdf.readthedocs.io/en/latest/api/MDF_function_specifications.html args: Dictionary of values for each of the arguments for the function of the parameter, e.g. if the in-build function is :code:`linear(slope)`, the args here could be :code:`{"slope": 3}` or :code:`{"slope": "input_port_0 + 2"}`