LoginSignup
0
0

More than 3 years have passed since last update.

sympyで「薄肉球殻(Thin spherical shell)」をやってみた。技術士機械平成27年問Ⅲ-8

Last updated at Posted at 2020-09-07

①薄肉球殻のonline webを探しています。
薄肉円筒の1/2でいいですか。
②薄肉円筒のonline webのおすすめを教えて下さい。
よろしくお願いします。

技術士 01機械部門 平成27年問Ⅲ-8

https://www.engineer.or.jp/c_topics/004/attached/attach_4134_3.pdf#page=7

入力

from sympy import *                                                                                                             
var('σt π t r p')                                                                                                               
s = solve(Eq(π*r**2*p, 2*π*r*t*σt), t)                                                                                                               
print("t=",s)                                                                                                               
print("t=",Float(s[0].subs({σt:250,p:0.5, r:3000}),2))                                                                                                             

出力

t= [p*r/(2*σt)]                                                                                                                
t= 3.0                                                                                                              

(参考)【2015九大】薄肉円筒容器問題【材料力学院試対策演習】

https://www.youtube.com/watch?v=3RgGaSmcWYQ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0