You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,14 +157,14 @@ There are three types of input files that must be provided:
157
157
-**cuqdyn config xml:**
158
158
This file contains the configuration of the cuqdyn solver used in the cuqdyn-c library.
159
159
160
-
- The tolerances block defines the rtol and atol used by the cvodes library.
161
-
- The ode model is defined inside the ode_expr block.
162
-
- y0 is the initial conditions of the ODE (If no present, the first row of the data matrix will be used) (Optional).
163
-
- The states_transformer block defines the transformations applied to the different states in case of the observed data
164
-
being a combination of the different states.
160
+
-**tolerances:** rtol and atol used by the cvodes library.
161
+
-**ode_expr:** ODE model expression or identifier.
162
+
-**time_scaling:** Scaling factor for time. Using negative powers of 10 helps cvodes speed.
163
+
-**y0:** Initial conditions of the ODE.
164
+
-**states_transformer:** Transformations expressions or identidier applied to the different states in case of the
165
+
observed data being a combination of the different states.
165
166
166
-
There is an option to accelerate the process of evaluating the ODE by defining it and the states transformer inside the
167
-
mevalexpr module. We will talk about this later.
167
+
There is an option to accelerate the process of evaluating the ODE by defining it and the states transformer inside the mevalexpr module. We will talk about this later.
168
168
169
169
```xml
170
170
<?xml version="1.0" encoding="UTF-8" ?>
@@ -191,7 +191,8 @@ There are three types of input files that must be provided:
191
191
p1 * y11 * y7 - p24 * p22 * y14
192
192
p28 + p27 * y7 - p29 * y15
193
193
</ode_expr>
194
-
<y0> <!-- Optional -->
194
+
<time_scaling>0.001</time_scaling> <!-- Optional (Defaults to 1.0) -->
195
+
<y0> <!-- Optional (Defaults to the first row of the data file) -->
0 commit comments