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

📄 initial.hxx

📁 不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.
💻 HXX
字号:
//   *******************************
//   *** CLASS INITIAL CONDITION ***
//   *******************************
 

#include "load.hxx"
#include "dictionr.hxx"


class InitialCondition : public Load
/*
   This class implements an initial condition. An initial condition is usu-
   ally attribute of one or more degrees of freedom.
*/
{
   private :
      Dictionary*  initialValueDictionary ;

   public :
      InitialCondition (int i,Domain* d) : Load(i,d)
					  { initialValueDictionary = NULL ;}
      ~InitialCondition ()                { delete initialValueDictionary ;}

      double  give (char) ;
      int     hasConditionOn (char u) ;
      void    instanciateYourself ()      { this -> readConditions();}
      void    printYourself () ;
      void    readConditions () ;
} ;

⌨️ 快捷键说明

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