Giter Site home page Giter Site logo

eom's Introduction

Equation of Motions

Crate docs.rs master DOI

Configurable ODE/PDE solver

Contents

Lyapunov analysis

Gallery

Lorenz '63 model

Lorenz63

Kuramoto-Sivashinsky equation

KSE

Swift-Hohenberg equation

SHE

License

MIT-License, see LICENSE file.

eom's People

Contributors

doraneko94 avatar mergecat[bot] avatar termoshtt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

eom's Issues

Kuramoto–Sivashinsky Fails to Compile

すみません、私は日本語を勉強するが始める。私は英語な通信文を送得ります、けど丁寧語練習すろ。蔵本ースイワシヌスキPDE範をコンパイルするがしくじります。

image

カルゴはndarray-linalgをもはや認めりません。私はCargo.tomlにversion="0.12"を除く、けど
コンパイルしません。

image

ありがとうございます。
GitHubはアップロードをとして.txt求めりますだから私はCargo.toml.txtアップロードする。
Cargo.toml.txt

RandomInit trait for models

Most model should have a moderate random initial state, which is placed on the attractor.
However, we cannot choose good initial point for all parameters. Thus, this should be return Result value, and assured to return value for default setting.

trait RandomInit {
  fn random_init(&self) -> Result<ArrayBase<S, D>, DivergenceError>
}

TimeSeries iterator is slow

let ts = TimeSeries { teo: teo, state: x };
let v = ts.take(time).last().unwrap();

is 20-30% slower than

for 0..time {
   x = teo(x)
}

I think it is because that next() implementation creates two clones while one iteration step.

Code usage in fluid dynamics software

Hello!

I found your library after searching about odes and solvers and it looks very promising :) (I'm the one from twitter).

Are you open to contribution? Because the fluid equation will be massively used in this new code and I want to help improve it! :)

Lyapunov Analysis

Implement the followings:

  • Lyapunov exponent
  • Covariant Lyapunov Vector

PDEs to be implemented

  • Kuramoto-Sivashinsky (1D) #45
  • Swift-Hohenberg (1D) #74
  • Complex Ginzburg-Landau (1D)
  • KdV (1D)
  • Gray-Scott (2D)
  • Navier-Stokes (2D, 3D)

Simplify TimeEvolution

self-consuming trait technique is too complicated. This should be removed with version up to 0.6

Explicit Schemes

  • Euler (euler)
  • Heun (heun)
  • refined Euler (reuler)
  • classical 4th-order Runge-Kutta (rk4)

Simplify TimeEvolution trait

pub trait TimeEvolution<S, D> {
  ...
  fn iterate<'a>(&self, &'a mut ArrayBase<S, D>) -> &'a mut ArrayBase<S, D>;
}

will be enough.

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.