代码搜索:Solver
找到约 5,733 项符合「Solver」的源代码
代码结果 5,733
www.eeworm.com/read/400650/2347947
h euler_solver.h
// $Id: euler_solver.h 2629 2008-02-01 23:12:52Z roystgnr $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software;
www.eeworm.com/read/400650/2347950
h diff_solver.h
// $Id: diff_solver.h 2788 2008-04-13 02:05:22Z roystgnr $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software; y
www.eeworm.com/read/400650/2347951
h steady_solver.h
// $Id: steady_solver.h 2638 2008-02-05 23:15:13Z roystgnr $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software
www.eeworm.com/read/400650/2347957
h time_solver.h
// $Id: time_solver.h 2638 2008-02-05 23:15:13Z roystgnr $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software; y
www.eeworm.com/read/400650/2347964
h unsteady_solver.h
// $Id: time_solver.h 2501 2007-11-20 02:33:29Z benkirk $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software; yo
www.eeworm.com/read/400650/2348094
h linear_solver.h
// $Id: linear_solver.h 2501 2007-11-20 02:33:29Z benkirk $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software;
www.eeworm.com/read/400650/2348118
h eigen_solver.h
// $Id: eigen_solver.h 2501 2007-11-20 02:33:29Z benkirk $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free software; y
www.eeworm.com/read/400650/2348120
h nonlinear_solver.h
// $Id: nonlinear_solver.h 2891 2008-06-25 15:25:47Z friedmud $
// The libMesh Finite Element Library.
// Copyright (C) 2002-2007 Benjamin S. Kirk, John W. Peterson
// This library is free softwa
www.eeworm.com/read/400650/2348711
c euler_solver.c
#include "diff_system.h"
#include "euler_solver.h"
#include "numeric_vector.h"
EulerSolver::EulerSolver (sys_type& s)
: UnsteadySolver(s), theta(1.)
{
}
EulerSolver::~EulerSolver ()
{
}
Rea
www.eeworm.com/read/400650/2348719
c diff_solver.c
#include "diff_solver.h"
#include "newton_solver.h"
DiffSolver::DiffSolver (sys_type& s)
: quiet(true),
max_linear_iterations(1000),
max_nonlinear_iterations(100),
continue_af