1 Star 0 Fork 0

xfygogo/cvode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
BSD-3-Clause
SUNDIALS 
    SUite of Nonlinear and DIfferential/ALgebraic equation Solvers
                   Release 2.6.2, August 2015
      Alan Hindmarsh, Daniel Reynolds, Radu Serban, Carol Woodward
           Center for Applied Scientific Computing, LLNL

The family of solvers referred to as SUNDIALS consists of the following solvers:
 ARKODE - for integration of ordinary differential equation systems (ODEs)
          ARKODE treats stiff, nonstiff and multi-rate ODE systems of the form
          y' = fe(t,y) + fi(t,y), y(t0) = y0
 CVODE  - for integration of ordinary differential equation systems (ODEs)
          CVODE treats stiff and nonstiff ODE systems of the form
          y' = f(t,y), y(t0) = y0
 CVODES - for integration and sensitivity analysis of ODEs
          CVODES treats stiff and nonstiff ODE systems of the form
          y' = f(t,y,p), y(t0) = y0(p)
 IDA    - for integration of differential-algebraic equation systems (DAEs)
          IDA treats DAE systems of the form
          F(t,y,y') = 0, y(t0) = y0, y'(t0) = y0'
 IDAS   - for integration and sensitivity analysis of DAEs
          IDAS treats DAE systems of the form
          F(t,y,y',p) = 0, y(t0) = y0(p), y'(t0) = y0'(p)
 KINSOL - for solution of nonlinear algebraic systems
          KINSOL treats nonlinear systems of the form
          F(u) = 0

The various solvers of this family share many subordinate modules.
For this reason, it is organized as a family, with a directory structure 
that exploits that sharing. Each individual solver includes documentation 
on installation, along with full usage documentation.

Warning to users who receive more than one of these individual solvers
at different times: The mixing of old and new versions SUNDIALS may fail.  
To avoid such failures, obtain all desired solvers at the same time.

For installation directions see the file INSTALL_GUIDE.pdf.

For additional information on a particular solver, see the README file
in the solver directory (e.g. src/cvode/README).


Release history:

+----------+----------------------------------------------------------------------------+
|          | SUNDIALS |                             Solver version                      |
|   Date   |          +----------+----------+----------+----------+---------------------+
|          | release  |  ARKODE  |   CVODE  | CVODES   |   IDA    |   IDAS   |  KINSOL  |
+----------+----------+----------+----------+----------+----------+---------------------+
| Jul 2002 |   1.0    |          |    2.0   |    1.0   |    2.0   |          |    2.0   |
| Dec 2004 |   2.0    |          |  2.2.0   |  2.1.0   |  2.2.0   |          |  2.2.0   |
| Jan 2005 |   2.0.1  |          |  2.2.1   |  2.1.1   |  2.2.1   |          |  2.2.1   |
| Mar 2005 |   2.0.2  |          |  2.2.2   |  2.1.2   |  2.2.2   |          |  2.2.2   |
| Apr 2005 |   2.1.0  |          |  2.3.0   |  2.2.0   |  2.3.0   |          |  2.3.0   |
| May 2005 |   2.1.1  |          |  2.3.0   |  2.3.0   |  2.3.0   |          |  2.3.0   |
| Mar 2006 |   2.2.0  |          |  2.4.0   |  2.4.0   |  2.4.0   |          |  2.4.0   |
| Nov 2006 |   2.3.0  |          |  2.5.0   |  2.5.0   |  2.5.0   |          |  2.5.0   |
| May 2009 |   2.4.0  |          |  2.6.0   |  2.6.0   |  2.6.0   |  1.0.0   |  2.6.0   |
| Mar 2012 |   2.5.0  |          |  2.7.0   |  2.7.0   |  2.7.0   |  1.1.0   |  2.7.0   |
| Mar 2015 |   2.6.0  |  1.0.0   |  2.8.0   |  2.8.0   |  2.8.0   |  1.2.0   |  2.8.0   |
| Mar 2015 |   2.6.1  |  1.0.1   |  2.8.1   |  2.8.1   |  2.8.1   |  1.2.1   |  2.8.1   |
| Aug 2015 |   2.6.2  |  1.0.2   |  2.8.2   |  2.8.2   |  2.8.2   |  1.2.2   |  2.8.2   |
+----------+----------+----------+----------+----------+----------+---------------------+
Copyright (c) 2002-2015, Lawrence Livermore National Security. Produced at the Lawrence Livermore National Laboratory. Written by S.D. Cohen, A.C. Hindmarsh, D.R. Reynolds, R. Serban, D. Shumaker, A.G. Taylor, and C.S. Woodward. LLNL-CODE-667205 (ARKODE) UCRL-CODE-155951 (CVODE) UCRL-CODE-155950 (CVODES) UCRL-CODE-155952 (IDA) UCRL-CODE-237203 (IDAS) LLNL-CODE-665877 (KINSOL) All rights reserved. This file is part of SUNDIALS. For details, see http://computation.llnl.gov/casc/sundials/main.html Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the disclaimer below. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the disclaimer (as noted below) in the documentation and/or other materials provided with the distribution. 3. Neither the name of the LLNS/LLNL nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Additional BSD Notice --------------------- 1. This notice is required to be provided under our contract with the U.S. Department of Energy (DOE). This work was produced at Lawrence Livermore National Laboratory under Contract No. DE-AC52-07NA27344 with the DOE. 2. Neither the United States Government nor Lawrence Livermore National Security, LLC nor any of their employees, makes any warranty, express or implied, or assumes any liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately-owned rights. 3. Also, reference herein to any specific commercial products, process, or services by trade name, trademark, manufacturer or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or Lawrence Livermore National Security, LLC. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or Lawrence Livermore National Security, LLC, and shall not be used for advertising or product endorsement purposes.

简介

SUite of Nonlinear and DIfferential/ALgebraic equation Solvers 展开 收起
C 等 2 种语言
BSD-3-Clause
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/xfygogo/cvode.git
git@gitee.com:xfygogo/cvode.git
xfygogo
cvode
cvode
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385