亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? equation_systems.h

?? 一個用來實現偏微分方程中網格的計算庫
?? H
?? 第 1 頁 / 共 2 頁
字號:
// $Id: equation_systems.h 2789 2008-04-13 02:24:40Z roystgnr $// The libMesh Finite Element Library.// Copyright (C) 2002-2007  Benjamin S. Kirk, John W. Peterson  // This library is free software; you can redistribute it and/or// modify it under the terms of the GNU Lesser General Public// License as published by the Free Software Foundation; either// version 2.1 of the License, or (at your option) any later version.  // This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU// Lesser General Public License for more details.  // You should have received a copy of the GNU Lesser General Public// License along with this library; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA#ifndef __equation_systems_h__#define __equation_systems_h__// C++ includes#include <set>#include <map>#include <vector>#include <string>// Local Includes#include "libmesh_common.h"#include "parameters.h"#include "system.h"#include "enum_xdr_mode.h"// HP aCC needs these for some reason#ifdef __HP_aCC# include "frequency_system.h"# include "transient_system.h"# include "newmark_system.h"# include "steady_system.h"#endif// Forward Declarationsclass MeshData;class Elem;class MeshBase;/** * This is the \p EquationSystems class.  It is in charge * of handling all the various equation systems defined * for a \p MeshBase.  It may have multiple systems, which may * be active or inactive, so that at different solution * stages only a sub-set may be solved for.  Also, through * the templated access, @e different types of systems * may be handled.  Also other features, like flags,  * parameters, I/O etc are provided. * * @author Benjamin S. Kirk, 2002-2007 */// ------------------------------------------------------------// EquationSystems class definitionclass EquationSystems{public:  /**   * Define enumeration to set properties in EquationSystems::read()   */  enum ReadFlags { READ_HEADER           = 1,                   READ_DATA             = 2,                   READ_ADDITIONAL_DATA  = 4,                   READ_LEGACY_FORMAT    = 8 };  /**   * Define enumeration to set properties in EquationSystems::write()   */  enum WriteFlags { WRITE_DATA             = 1,                    WRITE_ADDITIONAL_DATA  = 2,                    WRITE_PARALLEL_FILES   = 4 };    /**   * Constructor.   */  EquationSystems (MeshBase& mesh, MeshData* mesh_data=NULL);  /**   * Destructor.  Should be virtual, since the user may want to derive   * subclasses of EquationSystems.   */  virtual ~EquationSystems ();   /**   * Returns tha data structure to a pristine state.   */  void clear ();    /**   * Initialize all the systems   */  void init ();    /**   * Reinitialize all the systems   */  void reinit ();  /**   * Updates local values for all the systems   */  void update ();  /**   * @returns the number of equation systems.   */  unsigned int n_systems() const;  /**   * @returns true if the system named \p name exists within   * this EquationSystems object.   */  bool has_system (const std::string& name) const;  /**   * @returns a constant reference to the system named \p name.   * The template argument defines the return type.  For example,   * const SteadySystem& sys = eq.get_system<SteadySystem> ("sys");   * is an example of how the method might be used   */  template <typename T_sys>  const T_sys & get_system (const std::string& name) const;  /**   * @returns a writeable referene to the system named \p name.   * The template argument defines the return type.  For example,   * const SteadySystem& sys = eq.get_system<SteadySystem> ("sys");   * is an example of how the method might be used   */  template <typename T_sys>  T_sys & get_system (const std::string& name);  /**   * @returns a constant reference to system number \p num.   * The template argument defines the return type.  For example,   * const SteadySystem& sys = eq.get_system<SteadySystem> (0);   * is an example of how the method might be used   */  template <typename T_sys>  const T_sys & get_system (const unsigned int num) const;  /**   * @returns a writeable referene to the system number \p num.   * The template argument defines the return type.  For example,   * const SteadySystem& sys = eq.get_system<SteadySystem> (0);   * is an example of how the method might be used   */  template <typename T_sys>  T_sys & get_system (const unsigned int num);  /**   * @returns a constant reference to the system named \p name.   */  const System & get_system (const std::string& name) const;  /**   * @returns a writeable referene to the system named \p name.   */  System & get_system (const std::string& name);  /**   * @returns a constant reference to system number \p num.   */  const System & get_system (const unsigned int num) const;  /**   * @returns a writeable referene to the system number \p num.   */  System & get_system (const unsigned int num);    /**   * Add the system of type \p system_type named \p name to the   * systems array.   */  System & add_system (const std::string& system_type,		       const std::string& name);    /**   * Add the system named \p name to the systems array.   */  template <typename T_sys>  T_sys & add_system (const std::string& name);    /**   * Remove the system named \p name from the systems array.   * This function is now deprecated - write the   * libmesh-devel mailing list if you need it reimplemented.   */  void delete_system (const std::string& name);  /**   * @returns the total number of variables in all   * systems.   */  unsigned int n_vars () const;    /**   * @returns the total number of degrees of freedom   * in all systems.   */  unsigned int n_dofs () const;  /**   * Returns the number of active degrees of freedom   * for the EquationSystems object.   */  unsigned int n_active_dofs() const;    /**   * Call \p solve on all the individual equation systems.   *   * By default this function solves each equation system once,   * in the order they were added.  For more sophisticated decoupled   * problems the user may with to override this behavior in a derived   * class.   */  virtual void solve ();    /**   * Fill the input vector \p var_names with the names   * of the variables for each system.   */  void build_variable_names (std::vector<std::string>& var_names) const;  /**   * Fill the input vector \p soln with the solution values for the   * system named \p name.  Note that the input   * vector \p soln will only be assembled on processor 0, so this   * method is only applicable to outputting plot files from processor 0.   */  void build_solution_vector (std::vector<Number>& soln,                              const std::string& system_name,                              const std::string& variable_name = "all_vars") const;    /**   * Fill the input vector \p soln with solution values.  The   * entries will be in variable-major format (corresponding to   * the names from \p build_variable_names()).   */  void build_solution_vector (std::vector<Number>& soln) const;    /**   * Fill the input vector \p soln with solution values.  The   * entries will be in variable-major format (corresponding to   * the names from \p build_variable_names()).   */  void build_discontinuous_solution_vector (std::vector<Number>& soln) const;    /**   * Read & initialize the systems from disk using the XDR data format.   * This format allows for machine-independent binary output.   *   * Set which sections of the file to read by bitwise OR'ing the    * EquationSystems::ReadFlags enumeration together. For example, to    * read all sections of the file, set read_flags to:   * (READ_HEADER | READ_DATA | READ_ADDITIONAL_DATA)   *   * Note that the equation system can be defined without initializing   * the data vectors to any solution values.  This can be done   * by omitting READ_DATA in the read_flags parameter.   */  void read (const std::string& name,	     const libMeshEnums::XdrMODE,             const unsigned int read_flags=(READ_HEADER | READ_DATA));  /**   * Write the systems to disk using the XDR data format.   * This format allows for machine-independent binary output.   *   * Set the writing properties using the EquationSystems::WriteFlags   * enumeration. Set which sections to write out by bitwise OR'ing   * the enumeration values. Write everything by setting write_flags to:   * (WRITE_DATA | WRITE_ADDITIONAL_DATA)   *   * Note that the solution data can be omitted by calling   * this routine with WRITE_DATA omitted in the write_flags argument.   */  void write (const std::string& name,	      const libMeshEnums::XdrMODE,              const unsigned int write_flags=(WRITE_DATA)) const;  /**   * @returns \p true when this equation system contains   * identical data, up to the given threshold.  Delegates   * most of the comparisons to perform to the responsible   * systems   */  bool compare (const EquationSystems& other_es,                 const Real threshold,                const bool verbose) const;  /**   * @returns a string containing information about the   * systems, flags, and parameters.   */  std::string get_info() const;      /**   * Prints information about the equation systems.   */  void print_info (std::ostream& os=std::cout) const;  /**   * Same as above, but allows you to also use stream syntax.   */  friend std::ostream& operator << (std::ostream& os, const EquationSystems& es);  /**   * @returns a constant reference to the mesh   */  const MeshBase & get_mesh() const;  /**   * @returns a reference to the mesh   */  MeshBase & get_mesh();  /**   * @returns true when the _mesh_data pointer is not NULL.   * This is needed because get_mesh_data will fail if it is NULL   */  bool has_mesh_data() const;  /**   * @returns a constant reference to the mesh_data   */  const MeshData & get_mesh_data() const;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕av资源一区| 美女国产一区二区三区| 天天影视色香欲综合网老头| 激情五月婷婷综合| 欧美日韩国产一二三| 国产精品对白交换视频| 久久99国产精品麻豆| 欧美日本一道本在线视频| 欧美激情一区二区三区全黄| 麻豆国产91在线播放| 91久久国产综合久久| 精品91自产拍在线观看一区| 亚洲成人中文在线| 99r国产精品| 久久精品免费在线观看| 久久99精品国产| 欧美韩国一区二区| 日本美女视频一区二区| 91久久一区二区| 亚洲人吸女人奶水| av网站一区二区三区| 日本一区二区三区在线观看| 国产一区二区三区免费看| 日韩三级在线免费观看| 视频在线观看国产精品| 在线观看一区二区视频| 一区二区三区精品在线| 91看片淫黄大片一级| 亚洲欧洲国产日韩| 成人动漫一区二区在线| 中文字幕第一区二区| 国产福利91精品| 2023国产精品视频| 国产精品一区专区| 国产日本一区二区| 成人a级免费电影| 国产精品成人午夜| 91热门视频在线观看| 亚洲男同1069视频| 精品视频1区2区3区| 亚洲制服欧美中文字幕中文字幕| 欧美视频一区二区三区在线观看 | 91久久精品一区二区| 亚洲国产电影在线观看| 成人ar影院免费观看视频| 国产精品入口麻豆原神| 国产在线不卡视频| 懂色av一区二区三区免费观看| 日韩欧美国产wwwww| 免费成人在线网站| 久久久久久久久久电影| av福利精品导航| 亚洲黄一区二区三区| 欧美日韩dvd在线观看| 免费的成人av| 国产精品三级av| 91久久免费观看| 日韩国产欧美三级| 精品国精品自拍自在线| 成人v精品蜜桃久久一区| 一区二区三区精密机械公司| 51精品秘密在线观看| 国产主播一区二区| 亚洲综合一二区| 欧美大胆人体bbbb| 99久久er热在这里只有精品15| 亚洲电影中文字幕在线观看| 2020国产成人综合网| eeuss鲁片一区二区三区| 亚洲国产精品久久久男人的天堂 | 无码av免费一区二区三区试看| 欧美一级片在线观看| 国产成人aaa| 日韩极品在线观看| 国产精品日韩成人| 欧美一区二区三区白人| 91麻豆蜜桃一区二区三区| 蜜桃91丨九色丨蝌蚪91桃色| 国产精品乱码一区二三区小蝌蚪| 欧美日本韩国一区二区三区视频| 激情久久五月天| 亚洲国产一区二区在线播放| 国产三级欧美三级日产三级99| 欧美性xxxxxxxx| 欧美一级高清大全免费观看| 成人免费av网站| 欧美a级一区二区| 亚洲欧美成人一区二区三区| 欧美精品一区二区三区高清aⅴ| 欧美性猛交xxxx黑人交| 国产成人免费9x9x人网站视频| 免费在线观看视频一区| 亚洲五月六月丁香激情| 国产精品私人自拍| www国产精品av| 欧美不卡一区二区三区| 欧美日本韩国一区二区三区视频| 一本色道久久加勒比精品| 国产麻豆成人精品| 韩国三级中文字幕hd久久精品| 日韩综合一区二区| 夜夜揉揉日日人人青青一国产精品| 中文字幕欧美激情一区| 久久久久国产精品免费免费搜索| 日韩欧美在线123| 91精品国产品国语在线不卡| 欧美日韩黄视频| 欧洲亚洲国产日韩| 欧美综合色免费| 色香蕉成人二区免费| 91在线播放网址| 91小视频在线| 99视频热这里只有精品免费| 成人动漫一区二区| 日韩欧美的一区| 制服丝袜av成人在线看| 在线观看91av| 欧美一区二区三区喷汁尤物| 精品乱码亚洲一区二区不卡| 2024国产精品| 国产精品免费看片| 亚洲视频一区在线| 亚洲愉拍自拍另类高清精品| 亚洲第一二三四区| 免费久久精品视频| 国产精品一区二区x88av| 丁香五精品蜜臀久久久久99网站 | 国产目拍亚洲精品99久久精品| 日本一区二区三区四区| 亚洲女人小视频在线观看| 亚洲精品中文字幕在线观看| 天天操天天干天天综合网| 青青草原综合久久大伊人精品| 蜜臀99久久精品久久久久久软件| 国产一区视频在线看| 成人黄色大片在线观看| 一本久久a久久精品亚洲| 精品视频免费在线| xnxx国产精品| 亚洲啪啪综合av一区二区三区| 亚洲电影第三页| 国产美女视频91| 91久久精品网| 日韩一区二区三区四区五区六区| www国产精品av| 亚洲欧美视频一区| 日本vs亚洲vs韩国一区三区二区| 国内精品伊人久久久久av影院 | 欧美日韩免费一区二区三区| 日韩三级在线观看| 亚洲丝袜精品丝袜在线| 丝袜脚交一区二区| 波多野结衣在线一区| 欧美久久一二三四区| 国产日韩亚洲欧美综合| 亚洲一区二区三区激情| 国产一区二区影院| 欧美日韩久久久久久| 国产日韩视频一区二区三区| 亚洲一区二区高清| 国产精品一区二区三区网站| 欧美在线小视频| 国产日韩欧美不卡在线| 日本伊人午夜精品| 一本色道久久综合亚洲aⅴ蜜桃 | 91精品国产色综合久久不卡蜜臀| 国产嫩草影院久久久久| 蜜桃视频第一区免费观看| 色婷婷av一区二区三区软件| 国产亚洲欧美中文| 日韩激情一二三区| 欧美影院一区二区三区| 中文字幕在线观看一区二区| 国内一区二区在线| 91麻豆精品国产91久久久| 中文字幕在线不卡一区 | 久色婷婷小香蕉久久| 欧日韩精品视频| 中文字幕亚洲一区二区av在线| 精品一区二区三区香蕉蜜桃| 欧美日韩免费视频| 亚洲综合成人网| 91污在线观看| 综合色中文字幕| 国产成人精品一区二区三区网站观看| 欧美一区二视频| 亚洲成人精品一区二区| 色久综合一二码| 亚洲手机成人高清视频| 成人黄色小视频| 国产精品三级av在线播放| 国产福利一区在线| 久久久久九九视频| 国产精品一区二区不卡| 久久精品一级爱片| 国产精品一区二区久久不卡| 久久久精品天堂| 国产大陆a不卡| 欧美国产精品一区| av亚洲产国偷v产偷v自拍|