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

📄 cebfip78.h

📁 Finite element program for mechanical problem. It can solve various problem in solid problem
💻 H
字号:
#ifndef CEBFIP78_H#define CEBFIP78_H#include "iotools.h"struct matrix;class cebfip78/**<    This file declares the class for the calculation of the compliance function according to the model CEB FIP 1978 */ { public:  cebfip78();    ~cebfip78();   void read (XFILE *in);  void compliance (double t_current,double &fi_t_t_dash,double &fcyl_t_dash,double &eps_shr_t);  void matstiff (matrix &d,long ipp);   private:  double t_end_curing; ///<time and curing [days]  double t_loading;    ///<age at loading [days]  double humidity;     ///<relative humidity <0,1>   double cs_thickness; ///<cross-sectional thickness [m]  double fcyl28;       ///<28-day cylinder strength of concrete [kPa]  double p6;           ///<coefficient of correction which is dependent on lab measurement, normally 1.0  };#endif

⌨️ 快捷键说明

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