1
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?

Betti's theorem「マクスウェルの相反定理を使うと、何を計算できますか。入力条件も教えて下さい。」をAI先生に教えてもらう。(2/2)

Last updated at Posted at 2024-12-18

(再)以下おすすめです。
https://qiita.com/mrrclb48z/items/369b66044a32fdc3c8ee#sympy%E3%81%A7bettis-theorem%E3%81%A7
 
・以下、正しいのか、私の力で判断できませんでした。申し訳ありません。
・???sympyのコードを聞きました。

マクスウェルの相反定理を使うと、何を計算できますか。入力条件も教えて下さい。

Gemini先生へ

1.画像アップロードだけ

>Example of Betti's Theorem
https://en.wikipedia.org/wiki/Betti%27s_theorem#/media/File:Bettti's_Theorem_Beam.png

(回答抜粋)
添付されたファイルは、構造力学における構造物の変形に関する図のようです。...

2.画像アップロード と ソースコード依頼

画像からsympyのソースコードをお願いします。

(回答抜粋)
画像そのものから直接 SymPy のソースコードを生成することはできません。画像を解析して数式を抽出する画像処理技術と、抽出された数式を SymPy のコードに変換する処理が必要になります。...
参考までに、SymPy の基本的な使い方に関する情報源をいくつか挙げておきます。...

from sympy import *

# 記号の定義
E, I, L, P = symbols('E I L P')

# たわみの計算式
delta = (P * L**3) / (48 * E * I)

# 数値代入
delta_numeric = delta.subs({E: 200e9, I: 1e-5, L: 5, P: 10e3})

# 結果の出力
print(f"たわみ: {delta}")
print(f"数値計算結果: {delta_numeric}")

ChatGPT先生へ

copilot先生へ

いつもの? sympyの実行環境と 参考のおすすめです。

(テンプレート)

いつもと違うおすすめです。

wikipedia

1
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
1
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?