not able to get the expected output.
if col5<200 then, col5+25
and the result will be replaced in next row of col5 untill col5 <200.
for example:
B(30,5)=194.87 so, it will be 194.87+25 = 219.87
B(31,5)=219.87 +25 = 244.87
B(32,5)=244.87+25 = 269.87
B(33,5)=269.87+0= 269.87
A=load("B.mat");
B=A.B;
B(:,5)=B(1,4)-cumsum(B(:,3));
CG=25;
for i=1:size(B,1)
if B(i,5)<200
B(i,6)=CG;
else
B(i,6)=0;
end
B(i,7)=B(i,6)+cumsum(B(i,5));
% B(i,5)=B(i,7);
end

댓글 수: 1

Jan
Jan 2022년 9월 30일
Please avoid pseudo-syntax like "if col5<200 then, col5+25". Use Matlab syntax, because the readers can understand it.
cumsum of a single element replies the value of the element. A cumulative sum is meaningful for a vector only.

댓글을 달려면 로그인하십시오.

 채택된 답변

Jan
Jan 2022년 10월 6일

0 개 추천

loadValue = [0;50;20;10;5;30;12;8;20;30;5];
capacity = 300;
mat = capacity(1,:) - cumsum(loadValue);
for i = 1:numel(loadValue)-1
if mat(i) < 200
mat(i) = mat(i) + 25;
end
mat(i+1) = mat(i) - loadValue(i+1);
end
mat

추가 답변 (1개)

Jan
Jan 2022년 9월 30일

0 개 추천

CG = 25;
C = 0;
for i = 1:size(B, 1)
if B(i, 5) < 200
if C == 0
C = CG;
else
C = 0;
end
end
B(i, 5) = B(i, 5) + C;
end
or shorter:
CG = 25;
C = 0;
for i = 1:size(B, 1)
if B(i, 5) < 200
C = CG * (C == 0);
end
B(i, 5) = B(i, 5) + C;
end

댓글 수: 8

Thank you very much @Jan. But, it does not meet my expectation. Let me make it clear.
B(i,5) is th battery capacity(kWh). CG(25 kWh) increases its capacity whenever battery capacity decreases to 200 kWh.
B(49,5)=133.049; % (which is <200)
B(49,7)=133.049+25; % 133.049+25 = 158.0490
% Till now its fine. But in the next hour battary capacity starts from B(49,7). i.e.
B(50,5)= 158.0490; % as it's <200, then
B(50,7)=158.0490+25; % 158.0490+25 = 183.0490. as it's <200, then
B(51,5)= 183.0490;
B(51,7)= 183.0490+25; % 183.0490+25 = 208.0490.
Arif Hoq
Arif Hoq 2022년 10월 4일
below one is my expected result.
Jan
Jan 2022년 10월 4일
@Arif Hoq: You've spent a lot of time to create this image. Remember, that I do not have any idea about what you are doing. I see 3 columns. The first element of the first column is blank, the other elements of the first column contain values. Are they related to the problem? What does "300-50" in the 2nd element of the 3rd column mean? Is this the first element of the 2nd column minus the constant? Formerly you have mentioned, that 25 is added. So what does this row mean:
50 250 arrow 300-50
I still do not understand, what you want to achieve.
The sentence "But in the next hour battary capacity starts from B(49,7)" is jard to understand also. "Hour"? "Battery capacity"? "kWh"? Too many information, which do not matter the question, and too few information about what you want to achieve.
Arif Hoq
Arif Hoq 2022년 10월 4일
편집: Arif Hoq 2022년 10월 4일
If i consider the image problem:
load=[0;50;20;10;5;30;12;8;20;30;5];
capacity=300;
mat=capacity-cumsum(load)
mat = 11×1
300 250 230 220 215 185 173 165 145 115
What does "300-50" in the 2nd element of the 3rd column mean?
it's 1st element of 2nd column minus 2nd element of 1st column and keep doing this.
300-50 = 250;
250-20= 230;
230-10=220;
220-5=215;
% mat(6,1)=185 which is <200, therefore add 25.
% mat(6,1) would be 185+25 =210;
% mat(7,1) >> 210-12 =198 which is <200, therefore add 25.
% mat(7,1) would be 198;25 = 223;
expected result:
300
250
230
220
215
210
223
215
220
215
210
Arif Hoq
Arif Hoq 2022년 10월 5일
편집: Arif Hoq 2022년 10월 5일
this might be a possible solution:
load=[0;50;20;10;5;30;12;8;20;30;5];
capacity=300;
mat=capacity(1,:)-cumsum(load);
for i=1:size(load)-1
if mat(i)<200
mat(i)=mat(i)+25;
mat(i+1)=mat(i)-cumsum(load(i+1));
else
mat(i+1)=mat(i)-cumsum(load(i+1));
end
end
mat
mat = 11×1
300 250 230 220 215 210 223 215 220 215
Jan
Jan 2022년 10월 5일
편집: Jan 2022년 10월 6일
@Arif Hoq: cumsum is the cumulative sum over the elements of a vector. In your code the argument of cumsum is a scalar. Then you can omit the cumsum inside the loop. A simplified version of your code:
loadValue = [0;50;20;10;5;30;12;8;20;30;5];
capacity = 300;
mat = capacity(1,:) - cumsum(loadValue);
for i = 1:numel(loadValue)-1
if mat(i) < 200
mat(i) = mat(i) + 25;
end
mat(i+1) = mat(i) - loadValue(i+1);
end
mat
Avoid redefining important Matlab commands as "load" as variables.
Remember that size() replies a vector. Then for i = 1:size(x) is fragile. Use the unique and clear numel instead or sprcify the dimension: size(x,1).
Now you have removed the load values twice from the capacity. Is this wanted?
Arif Hoq
Arif Hoq 2022년 10월 6일
Thank you very much @Jan. you are right, i can omit the cumsum inside the loop. will try to follow your tips on "Load" & "numel / size". that's my expected answer. could you please make it as an answer ?
Jan
Jan 2022년 10월 6일
@Arif Hoq: I've posted it as separate answer.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 MATLAB Coder에 대해 자세히 알아보기

제품

릴리스

R2022a

태그

질문:

2022년 9월 30일

댓글:

Jan
2022년 10월 6일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by