Delete entries in an array that are no longer needed
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm performing an iterative calculation that runs through 100002 iterations. Imagine a nozzle with area1 for the inlet and area2 for the exit. The main goal here is to perform a differential analysis of the nozzle for each iteration to arrive at some final values. The variables that require iterations are area (A), circumference (C), velocity (U), temperature (T), density (rho), pressure (P), Mach number (M), total temperature (Tt), and total pressure (Pt). So I have 9 variables that are iterated 100002 times. The computation time is about 30 minutes. This is not acceptable as I need to run 6 more cases.
Question: Is there a way to save the ith and the (i-1) term, where the ith term is the term I am calculating at the present iteration and the (i-1) is the previous term?
댓글 수: 0
채택된 답변
D
2011년 4월 11일
Instead of using an array, you could just use two variables for each of your current variables.
At the end of one iteration, new_var = ...
At the start of the next iteration: old_var = new_var, then re-calculate new_var.
Your i-1 term is stored in old_var, your ith term in new_var.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Oceanography and Hydrology에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!