cebfip78.h

来自「Finite element program for mechanical pr」· C头文件 代码 · 共 34 行

H
34
字号
#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 + =
减小字号Ctrl + -
显示快捷键?