📄 soilplateq.h
字号:
#ifndef SOILPLATEQ_H#define SOILPLATEQ_H#include "alias.h"#include "q4plate.h"struct matrix;struct vector;struct ivector;class soilplateq{ public: soilplateq (void); ~soilplateq (void); void eleminit (long eid); double approx (double xi,double eta,vector &nodval); void atd_matrix (matrix &atd,vector &x,vector &y); void dbmat (matrix &db,double c11, double c22,long ri, long ci); void transfmat (ivector &nodes,matrix &tmat); void appval (double xi,double eta,long fi,long nc,vector &eps,double **val); void nodecoord (vector &xi,vector &eta); void geom_matrix (matrix &gm,matrix &atd,vector &x,vector &y, vector &l); void geom_matrix_shear (matrix &gm,matrix &atd,vector &x,vector &y,vector &l); void res_stiffness_matrix (long eid,matrix &sm); void stiffness_matrix (long eid,long ri,long ci, matrix &sm,vector &x, vector &y); void res_mainip_strains (long lcid,long eid); void mainip_strains (long lcid,long eid,long ri,long ci,vector &x,vector &y,vector &r); void nod_strains (long lcid,long eid,long ri,long ci); void elem_strains (double **stra,long lcid,long eid,long ri,long ci); void appstrain (long lcid,long eid,double xi,double eta,long fi,long ncomp,vector &eps); void allip_strains (double **stra,long lcid,long eid,long ri,long ci); void strains (long lcid,long eid,long ri,long ci); void res_allip_stresses (long lcid,long eid); void allip_stresses (long lcid,long eid,long ri,long ci); void res_internal_forces (long lcid,long eid,vector &ifor); void internal_forces (long lcid,long eid,long ri,long ci,vector &ifor); // void inicipval(long eid, long ri, long ci, matrix &nodval, inictype *ictn) {}; // number of DOFs on the element long ndofe; // number of nodes on one element long nne; // total number of components of stress and strain tensors long tncomp; /// total number of integration points on element long tnip; // number of components of stress and strain tensors long *ncomp; // array containing cumulative numbers of components of stress and strain tensors long *cncomp; // number of approximated functions on the element long napfun; // number of edges on one element long ned; // number of nodes on one edge long nned; // array of orders of integration of stiffness matrix long **intordsm; // order of integration for mass matrix long intordmm; // order of integration on edges long intordb; // array of numbers of integration points in sets long **nip; // number of blocks long nb; // stress/strain state strastrestate ssst;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -