⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 odesolver.h

📁 Dolfin provide a high-performance linear algebra library
💻 H
字号:
// Copyright (C) 2003-2005 Johan Jansson and Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added:  2003// Last changed: 2005#ifndef __ODE_SOLVER_H#define __ODE_SOLVER_H#include <dolfin/constants.h>namespace dolfin {  class ODE;  /// Solves a given ODE of the form  ///  ///     u'(t) = f(u(t),t) on (0,T],  ///           ///     u(0)  = u0,  ///  /// where u(t) is a vector of length N.    class ODESolver {  public:    static void solve(ODE& ode);    //static void solve(ODE& ode, Function& u);    //static void solve(ODE& ode, Function& u, Function& phi);  private:    //static void solvePrimal(ODE& ode, Function& u);    //static void solveDual(ODE& ode, Function& u, Function& phi);  };}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -