亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
在线免费一区三区| 日韩免费在线观看| 91精品黄色片免费大全| 亚洲国产精品成人综合色在线婷婷| 亚洲欧美一区二区不卡| 国产精品一二三在| 欧美日韩一级二级三级| 中文字幕乱码久久午夜不卡| 美女www一区二区| 色999日韩国产欧美一区二区| 久久精品水蜜桃av综合天堂| 日本v片在线高清不卡在线观看| 99久久综合精品| 精品欧美久久久| 日日夜夜免费精品视频| 欧洲一区在线观看| 亚洲欧洲一区二区三区| 国产成人综合亚洲91猫咪| 日韩一级片网址| 亚洲第一福利视频在线| 91国产福利在线| 亚洲人成人一区二区在线观看 | 高清在线不卡av| 国产亚洲污的网站| 五月激情丁香一区二区三区| 一本久久a久久精品亚洲| 中文字幕亚洲一区二区av在线 | 免费在线看成人av| 69堂国产成人免费视频| 亚洲mv大片欧洲mv大片精品| 欧美丝袜丝交足nylons| 亚洲一区二区美女| 欧美日韩黄色影视| 亚洲午夜一区二区| 欧美精品99久久久**| 日韩不卡一区二区| 欧美一区二区日韩| 麻豆国产一区二区| 精品成人佐山爱一区二区| 国产伦精品一区二区三区视频青涩| 日韩精品中文字幕在线一区| 精品一区二区综合| 国产日产亚洲精品系列| 成人免费毛片片v| 国产精品久久国产精麻豆99网站| 99视频有精品| 亚洲成a人片在线不卡一二三区| 欧美色倩网站大全免费| 免费成人深夜小野草| 久久久久久电影| 成人午夜电影久久影院| 亚洲女爱视频在线| 欧美性生活影院| 美女一区二区三区在线观看| 26uuu欧美日本| 本田岬高潮一区二区三区| 怡红院av一区二区三区| 欧美一区二区三区免费观看视频| 精品一区二区三区久久| 中文字幕制服丝袜一区二区三区| 色婷婷狠狠综合| 国产精品一二三区| 亚洲天堂2014| 91麻豆精品国产91久久久久| 国产精品99久久不卡二区| 一区二区三区四区在线| 欧美成人一级视频| 91婷婷韩国欧美一区二区| 日韩精品福利网| 国产欧美日韩卡一| 欧美日韩成人综合在线一区二区 | 日韩有码一区二区三区| 久久男人中文字幕资源站| 在线亚洲+欧美+日本专区| 精品无人区卡一卡二卡三乱码免费卡 | 日韩精品亚洲一区二区三区免费| 欧美一级一区二区| 91亚洲永久精品| 六月丁香综合在线视频| 一区二区三区四区视频精品免费 | 精品国产人成亚洲区| 91尤物视频在线观看| 裸体歌舞表演一区二区| 一区二区三区精品| 国产女人aaa级久久久级| 91麻豆精品国产91久久久资源速度 | 午夜影视日本亚洲欧洲精品| 欧美激情综合五月色丁香| 欧美一区二区免费观在线| 91福利视频在线| caoporm超碰国产精品| 国产一区二区在线影院| 日本中文字幕不卡| 美女性感视频久久| 一二三四区精品视频| 国产精品麻豆欧美日韩ww| 精品久久久久99| 欧美剧情电影在线观看完整版免费励志电影| 国产精品1区2区3区| 久久国产乱子精品免费女| 亚洲国产cao| 亚洲一区二区欧美日韩| 一区二区国产盗摄色噜噜| 中文字幕一区三区| 久久综合色播五月| 日韩欧美一级二级三级久久久| 欧美日韩视频一区二区| 色婷婷av久久久久久久| 91亚洲国产成人精品一区二三| 国产福利精品导航| 久久国产精品99久久人人澡| 日韩精品视频网站| 首页国产欧美久久| 视频一区中文字幕| 天天色图综合网| 亚洲成av人片在线| 亚洲最大成人网4388xx| 亚洲香蕉伊在人在线观| 午夜在线成人av| 午夜电影久久久| 日本vs亚洲vs韩国一区三区| 日韩av电影天堂| 天堂精品中文字幕在线| 日韩高清不卡一区二区三区| 美女网站视频久久| 麻豆免费看一区二区三区| 韩国毛片一区二区三区| 粉嫩蜜臀av国产精品网站| 成人免费毛片app| 99国产精品国产精品久久| 91麻豆免费看片| 欧美午夜免费电影| xvideos.蜜桃一区二区| 国产精品美女久久久久久2018| 国产精品麻豆欧美日韩ww| 亚洲最大成人综合| 欧美aaa在线| 国产精品一区在线观看乱码| caoporn国产一区二区| 欧美视频在线播放| 精品处破学生在线二十三| 国产精品理伦片| 三级影片在线观看欧美日韩一区二区| 久久激情五月婷婷| 91美女片黄在线观看91美女| 欧美在线一二三| 精品国免费一区二区三区| 中文字幕日韩精品一区| 午夜欧美大尺度福利影院在线看| 美女视频黄久久| 97se亚洲国产综合在线| 欧美老女人第四色| 欧美激情综合在线| 偷拍日韩校园综合在线| 成人高清视频免费观看| 欧美三级视频在线观看| 国产欧美日韩久久| 亚洲成a人片在线不卡一二三区| 国产美女精品在线| 欧美午夜精品久久久久久孕妇 | 欧美剧情电影在线观看完整版免费励志电影 | 在线精品观看国产| 亚洲精品一区二区三区香蕉| 伊人色综合久久天天| 国产专区综合网| 欧美日韩一区二区三区在线看| 久久免费国产精品| 日韩在线观看一区二区| jlzzjlzz亚洲女人18| 日韩女优av电影在线观看| 亚洲欧美日韩在线播放| 精品伊人久久久久7777人| 欧亚洲嫩模精品一区三区| 国产欧美一区二区精品秋霞影院| 亚洲成人动漫一区| 色综合激情五月| 日本一区二区三区四区| 美女一区二区三区在线观看| 在线一区二区视频| 中文字幕欧美激情| 国产精品一区二区果冻传媒| 91精品国产麻豆国产自产在线 | 国产福利一区在线| 国产农村妇女毛片精品久久麻豆| 日本亚洲一区二区| 在线观看视频欧美| 中文字幕亚洲欧美在线不卡| 国产福利一区二区三区视频在线| 日韩亚洲欧美综合| 日韩高清在线电影| 欧美人伦禁忌dvd放荡欲情| 亚洲男同性恋视频| 成人在线视频一区二区| 久久久久九九视频| 国产精品一区二区三区99| 精品乱人伦小说| 韩国欧美一区二区| 久久综合九色欧美综合狠狠| 美女被吸乳得到大胸91| 日韩欧美国产一区二区三区|