コード例 #1
0
ファイル: mindlin_plate.py プロジェクト: yuhaibao324/Feon
 def calc_Ke(self):
     self.calc_T()
     self.calc_B()
     Ke = gl_quad2d(self.func, 3)
     _Ke = np.zeros((24, 24))
     _Ke[8:20, 8:20] = Ke
     self._Ke = _Ke
コード例 #2
0
ファイル: mindlin_plate.py プロジェクト: yuhaibao324/Feon
 def voa(self):
     return gl_quad2d(self.func_jac, 2)