0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

組み合わせ応力 基本例題5.03 P131「材料力学演習(20221021)」をsympyでやってみたい。

Last updated at Posted at 2023-05-10

申し訳ありません。意味がわかっていません。勉強中。
短くなる方法を教えて下さい。

オリジナル

基本例題5.03  P131
http://zairikiweb.starfree.jp/zai_enshuh/zai_enshuh_ver.3.3.pdf#page=136

「材料力学演習(20221021)一括(ver.3.3)」を勉強したい。>sympy
https://qiita.com/mrrclb48z/items/c3274daf5f7a99cfe027#%E4%BD%9C%E6%A5%AD%E4%B8%AD%E7%A7%81%E3%81%AE%E8%A7%A3%E7%AD%94sympy

sympyで

具体的な値を代入しました。???

from sympy import *
sgx,sgy=symbols('sgx,sgy',real=True)
t      =symbols('t'      ,real=True)
tauxy  =symbols('tauxy'  ,real=True)
sg = Rational(1,2)*(sgx+sgy)         +Rational(1,2)*(sgx-sgy)*cos(2*t)+tauxy*sin(2*t)
tau=-Rational(1,2)*(sgx-sgy)*sin(2*t)+tauxy*cos(2*t)
mySubs45 ={sgx:1000,sgy:-200,tauxy:600,t: 45*pi/180}
mySubsm30={sgx:1000,sgy:-200,tauxy:600,t:-30*pi/180}
print("#(1)",round(sg.subs(mySubs45 ),0),round(tau.subs(mySubs45 ),0))
print("#(2)",round(sg.subs(mySubsm30),0),round(tau.subs(mySubsm30),0))
#(1) 1000 -600
#(2) 180.000000000000 820.000000000000

①私の環境は,pycharmです。
②よく聞くのは、Jupyterです。
③web上で、上記のソースを「SymPy Live shell」に、コピー貼り付けでもできました。
黒背景の右上に、マウスを移動すると、コピーマークが発生します。
??? タブレット環境で、コピー貼り付けが実行できませんでした。???

Mathematicaで

勉強中

作図

勉強中

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?