asking about how to arrange 1000 EV with 8760 hours
조회 수: 4 (최근 30일)
이전 댓글 표시
asking about how to arrange 1000 EV with 8760 hours with each EV deffirent SOC, arrive and dep time etc....
댓글 수: 0
답변 (1개)
Walter Roberson
2025년 9월 24일
num_EV = 1000;
total_duration = 8760;
longest_ev_duration = 71; %adjust as appropriate
start_times = randi(total_duration, num_EV, 1);
ev_durations = randi(longest_ev_duration, num_EV, 1);
start_times = min(start_times, longest_ev_duration - ev_durations);
end_times = start_times + ev_durations;
Now each EV is due to start at start_times(K) and end at end_times(K)
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Solar Power에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!