function for integrating vector first order ODEs of the form: using the forward (explicit) euler method.
| Type | Intent | Optional | Attributes | Name | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
public function F(U, t) result(dU)function of the system Arguments
Return Value real, (size(U))derivative of |
|||||||||||||||||||||||||||
| real, | intent(in) | :: | t(0:) |
array of times where the numerical solution will be evaluated. |
|||||||||||||||||||||||
| real, | intent(in) | :: | U0(:) |
initial conditions |
|||||||||||||||||||||||
solution array such that the the row and column stands for the th component of the vector solution at time .