北、南などを向いている壁の日射量を計算したいと思います。その場所の日射量があり、次の式を試しました。
S_module = S_incident * (math.cos(alpha)*math.sin(beta)*math.cos(psi-theta) + math.sin(alpha)*math.cos(beta))
と
alpha = 24.86 #sun elevation angle
theta = 81.58 #sun azimuth angle
beta = 90 #wall tilt angle (vertical module beta=90)
psi = 135 #surface orientation: psi=0 == facing north, psi=180 == facing south; is the azimuth angle that the module faces
S_incident = 663 [W]
これは 2019-6-21 6h timezone=utc 用です
Python パッケージ pysolar を試してみましたが、上記の式は次の場所にあります: https://www.pveducation.org/pvcdrom/properties-of-sunlight/arbitrary-orientation-and-tilt
私の問題は、正しい結果が得られなかったことです。たとえば、上記のプロパティの結果は -495 [W] です。これは真実ではない可能性があります。なぜなら、午前中は放射能に少なくとも小さな正の値がなければならないからです。
ヒントをありがとう!