私はPythonが初めてで、助けが必要です。
円の中心の X 座標を見つけるための Python スクリプトがあります。r1 が小さい場合、xA1 と xA2 は複素数です (エラー メッセージ ValueError: math domain error を示します)。私の質問は、このエラー メッセージを while ステートメントに使用する方法です。while ステートメントの下のコード全体をコピーする必要がありますか? 最初の方程式 xs2=r3*math.sin(beta2r) へのリンクを作成することは可能ですか?
回答ありがとうございます。
ローマン
import math
r1=0;
r2=110.5;
r3=212.5;
beta2d=35;
beta1dpoz=45;
beta2r=beta2d*math.pi/180
xs2=r3*math.sin(beta2r)
ys2=r1-r3*math.cos(beta2r)
kruh1=math.pow(xs2,2)+math.pow(ys2,2)
kruh2=math.pow(r1,2)+math.pow(r3,2)-2*r1*r3*math.cos(beta2r)
xA1=1.0/2*((xs2*(1+((math.pow(r1,2)-math.pow(r2,2))/(math.pow(xs2,2)+math.pow(ys2,2)))))+(ys2*(math.sqrt(((2*(math.pow(r1,2)+math.pow(r2,2)))/(math.pow(xs2,2)+math.pow(ys2,2)))-(math.pow(((math.pow(r1,2)-math.pow(r2,2))/(math.pow(xs2,2)+math.pow(ys2,2))),2))-1))))
xA2=1.0/2*((xs2*(1+((math.pow(r1,2)-math.pow(r2,2))/(math.pow(xs2,2)+math.pow(ys2,2)))))-(ys2*(math.sqrt(((2*(math.pow(r1,2)+math.pow(r2,2)))/(math.pow(xs2,2)+math.pow(ys2,2)))-(math.pow(((math.pow(r1,2)-math.pow(r2,2))/(math.pow(xs2,2)+math.pow(ys2,2))),2))-1))))
xAmat=[xA1,xA2]
xA=max(xAmat)
while ('ValueError: math domain error'):
r1=r1+0.1
.
.
.
xA=