Giter Club home page Giter Club logo

Comments (6)

shivin9 avatar shivin9 commented on May 30, 2024

Hi,
Yes it does support non-uniform spacing and we might support in the future. Problems come when we try to create a transpose operator. The whole function (stencils) changes and we don't know how to implement it without a matrix.

from diffeqoperators.jl.

ChrisRackauckas avatar ChrisRackauckas commented on May 30, 2024

It's fine to have no transpose in that case. non-uniform with the BC handling is super useful by itself, and many iterative solvers don't need the transpose.

from diffeqoperators.jl.

shivin9 avatar shivin9 commented on May 30, 2024

Upon further thought, we can get the transposed stencils very easily actually (except for :periodic maybe)
We can generate the 'essential' full matrix linear operator ie. one which is much smaller is size (O((derivative_order+approximation_order)^2)) and since it contains the essential information about all the coefficients, we can take it's transpose and get the transposed stencils. eg.

julia> A = LinearOperator{Float64}(2,4,1.0,100,:D0,:D0);
julia> full(A,5)
5×5 Array{Float64,2}:
 -2.5         1.33333    -0.0833333   0.0         0.0      
  1.33333    -2.5         1.33333    -0.0833333   0.0      
 -0.0833333   1.33333    -2.5         1.33333    -0.0833333
  0.0        -0.0833333   1.33333    -2.5         1.33333  
  0.0         0.0        -0.0833333   1.33333    -2.5      

full(A,5)', in this case the same matrix, will have the transposed stencils which we can store for fast calculation of transposes.
Using A' will just meaning changing a flag variable in the LinearOperator to start using the transposed stencils created at initialization.

from diffeqoperators.jl.

ChrisRackauckas avatar ChrisRackauckas commented on May 30, 2024

Don't worry about this until way way later. Non-uniform spacing with an iterative method that requires a transpose is a very niche topic.

from diffeqoperators.jl.

dextorious avatar dextorious commented on May 30, 2024

For the moment, anyone who needs the transpose can just use the full matrix operator, so the functionality is still there, just not optimal. With that caveat, supporting non-uniform spacing is actually very straightforward.

from diffeqoperators.jl.

shivin9 avatar shivin9 commented on May 30, 2024

work going on here #49

from diffeqoperators.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.