Skip to content
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

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open

Radau II A Solver #3

wants to merge 28 commits into from

Conversation

obiajulu
Copy link
Owner

@obiajulu obiajulu commented Jul 7, 2016

Steadily growing implementation of Radau IIA solvers, as described by Harier et al in Solving Ordinary Differential Equations II

# 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
Copy link
Collaborator

@YingboMa YingboMa Jul 8, 2016

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.

Copy link
Owner Author

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.

@YingboMa
Copy link
Collaborator

YingboMa commented Jul 8, 2016

This is the performance issue that Polynomials package has. 46fec51d-372b-40bb-bbed-5db372fada03


iterate = true
count = 0
while iterate && count<=7
Copy link
Owner Author

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

@codecov-io
Copy link

codecov-io commented Jul 25, 2016

Current coverage is 67.35% (diff: 0.00%)

No coverage report found for master at a0ef97d.

Powered by Codecov. Last update a0ef97d...0323ff5

@ufechner7
Copy link

What is the status of this? Is there already a working RADAU solver for Julia?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants