Calculate solar zenith angle
이전 댓글 표시
I want to calculate solar zenith angle for inputting a function. i tried with the available codes but didnt work out for me. Any references/guides for estimating solar zenith angle
답변 (1개)
Sam Chak
2022년 5월 16일
I did a web search and found the formula. It's a little strange that your browser didn't show references/guides to calculate the solar zenith angle.
Anyhow, I also tried the code and it works:
prompt1 = "What is the value of the local latitude? ";
Phi = input(prompt1)
prompt2 = "What is the value of the current declination of the Sun? ";
delta = input(prompt2)
prompt3 = "What is the value of the hour angle, in the local solar time? ";
h = input(prompt3)
theta_s = acos(sin(Phi)*sin(delta) + cos(Phi)*cos(delta)*cos(h))

댓글 수: 2
Arvind Gauns
2022년 5월 17일
Lei
2023년 12월 24일
Hey Arvind,
Could you please shard the function of calczenithangle?
Thanks,
Leo
카테고리
도움말 센터 및 File Exchange에서 Sources에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!