-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Radau II A Solver #3
base: master
Are you sure you want to change the base?
Conversation
# Use Netwon interation | ||
# | ||
# ⃗z^(k+1) = ⃗z ^ (k) - Δ⃗z^(k) | ||
#TODO: use the transformation T^(-1)A^(-1)T = Λ, W^k = (T^-1 ⊕ I)Z^k |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a function in Julia Base called "kron" which is Kronecker tensor product. Maybe this function is helpful to you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes indeed, this is very very helpful!!! Saves me from having to implement tensor product myself. Thanks.
…au. Just need to do the actual trial steps and error/order controls
|
||
iterate = true | ||
count = 0 | ||
while iterate && count<=7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make into a separate function
Current coverage is 67.35% (diff: 0.00%)
|
What is the status of this? Is there already a working RADAU solver for Julia? |
Steadily growing implementation of Radau IIA solvers, as described by Harier et al in Solving Ordinary Differential Equations II