Skip to content

Commit

Permalink
test_space
Browse files Browse the repository at this point in the history
  • Loading branch information
menon-karthik committed Jun 25, 2024
1 parent 6cca779 commit 8f424d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/pages/add_block.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ e*dP_out/dt + f*Q_out*Q_out + g*P_out + h*I_1 = 0
# 4. Implement the matrix equations for the block.

* Implement the `update_constant`, `update_time` and `update_solution` functions.
* All matrix elements that are constant are specified in `update_constant`.
* Matrix elements that depend only on time (not the solution of the problem itself) are specified in `update_time`.
* All matrix elements that are constant are specified in `update_constant`.\
* Matrix elements that depend only on time (not the solution of the problem itself) are specified in `update_time`.
\
* Matrix elements that change with the solution (i.e. depend on the state variables themselves) are specified in `update_solution`.
* Not all blocks will require the `update_time` and `update_solution` functions.

Expand Down

0 comments on commit 8f424d6

Please sign in to comment.